<?php
header("Content-type: text/xml; charset=utf-8");

$urls = [
    "https://sbgwebseo.com/",
    "https://sbgwebseo.com/jasa-seo/",
    "https://sbgwebseo.com/jasa-pembuatan-website/",
    "https://sbgwebseo.com/tentang-kami/",
    "https://sbgwebseo.com/kontak/",
    "https://sbgwebseo.com/blog/"
];

echo '<?xml version="1.0" encoding="UTF-8"?>';
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<?php foreach ($urls as $url): ?>
  <url>
    <loc><?= $url ?></loc>
    <lastmod><?= date('Y-m-d') ?></lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
<?php endforeach; ?>
</urlset>
