<?php require_once __DIR__.'/inc.php'; header('Content-Type: application/xml; charset=UTF-8'); echo '<?xml version="1.0" encoding="UTF-8"?>' . "\n"; ?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:video="http://www.google.com/schemas/sitemap-video/1.1">
<?php
$pages=['/','/brand-film/','/video-community/','/ai-lab/','/entertainment-culture/','/creator-center/','/contact-brand/','/featured-video/','/sweet-community/','/ai-toolkit/','/emotion-space/','/creative-studio/'];
foreach($pages as $p){
  echo "  <url>\n";
  echo "    <loc>".site_url($p)."</loc>\n";
  echo "    <lastmod>".date('Y-m-d')."</lastmod>\n";
  echo "    <changefreq>daily</changefreq>\n";
  echo "    <priority>".($p==='/'?'1.0':'0.8')."</priority>\n";
  echo "  </url>\n";
}
?>
</urlset>
