<?php
header('Content-Type: application/xml; charset=UTF-8');
require_once __DIR__ . '/inc/common.php';
$today = date('Y-m-d');
$urls = [
    ['loc' => '/', 'priority' => '1.0'],
    ['loc' => '/yingshi/', 'priority' => '0.8'],
    ['loc' => '/community/', 'priority' => '0.8'],
    ['loc' => '/ai-lab/', 'priority' => '0.8'],
    ['loc' => '/dimension/', 'priority' => '0.8'],
    ['loc' => '/creators/', 'priority' => '0.8'],
    ['loc' => '/contact/', 'priority' => '0.8'],
    ['loc' => '/selected-video/', 'priority' => '0.8'],
    ['loc' => '/sweet-community/', 'priority' => '0.8'],
    ['loc' => '/creation-hub/', 'priority' => '0.8'],
    ['loc' => '/ai-toolbox/', 'priority' => '0.8'],
    ['loc' => '/emotion-space/', 'priority' => '0.8'],
];
echo '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<?php foreach ($urls as $item): ?>
  <url>
    <loc><?php echo htmlspecialchars(site_url($item['loc']), ENT_QUOTES, 'UTF-8'); ?></loc>
    <lastmod><?php echo $today; ?></lastmod>
    <changefreq>daily</changefreq>
    <priority><?php echo $item['priority']; ?></priority>
  </url>
<?php endforeach; ?>
</urlset>
