<?php
header('Content-Type: application/xml; charset=utf-8');
require_once __DIR__ . '/includes/config.php';
$urls = [
    ['loc' => '/', 'priority' => '1.0', 'changefreq' => 'daily'],
    ['loc' => '/brand-film/', 'priority' => '0.9', 'changefreq' => 'daily'],
    ['loc' => '/video-community/', 'priority' => '0.9', 'changefreq' => 'daily'],
    ['loc' => '/ai-lab/', 'priority' => '0.8', 'changefreq' => 'weekly'],
    ['loc' => '/entertainment-acg/', 'priority' => '0.8', 'changefreq' => 'weekly'],
    ['loc' => '/creators/', 'priority' => '0.8', 'changefreq' => 'weekly'],
    ['loc' => '/contact/', 'priority' => '0.7', 'changefreq' => 'monthly'],
    ['loc' => '/columns/featured-video/', 'priority' => '0.8', 'changefreq' => 'daily'],
    ['loc' => '/columns/sweet-community/', 'priority' => '0.7', 'changefreq' => 'weekly'],
    ['loc' => '/columns/ai-toolbox/', 'priority' => '0.7', 'changefreq' => 'weekly'],
    ['loc' => '/columns/emotion-space/', 'priority' => '0.7', 'changefreq' => 'weekly'],
    ['loc' => '/columns/life-skills-video/', 'priority' => '0.8', 'changefreq' => 'daily'],
];
echo '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<?php foreach ($urls as $url): ?>
    <url>
        <loc><?php echo e(site_url($url['loc'])); ?></loc>
        <lastmod><?php echo date('Y-m-d'); ?></lastmod>
        <changefreq><?php echo e($url['changefreq']); ?></changefreq>
        <priority><?php echo e($url['priority']); ?></priority>
    </url>
<?php endforeach; ?>
</urlset>
