<?php
require_once __DIR__ . '/includes/config.php';
header('Content-Type: application/xml; charset=utf-8');
$pages = ['/', '/recommend/', '/cases/', '/guide/', '/about/', '/insight/'];
echo '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
?>
<urlset xmlns="<?= e(sitemap_namespace()) ?>">
<?php foreach ($pages as $path): ?>
  <url>
    <loc><?= e(site_url($path)) ?></loc>
    <lastmod><?= e(date('Y-m-d')) ?></lastmod>
    <changefreq>daily</changefreq>
    <priority><?= $path === '/' ? '1.0' : '0.8' ?></priority>
  </url>
<?php endforeach; ?>
</urlset>
