<?php
header('Content-Type: application/xml; charset=utf-8');
$domain = 'https://downloadtiktok.net';
$pages = [
    ['loc' => $domain . '/', 'priority' => '1.0', 'changefreq' => 'daily'],
    ['loc' => $domain . '/about.php', 'priority' => '0.7', 'changefreq' => 'monthly'],
    ['loc' => $domain . '/contact.php', 'priority' => '0.5', 'changefreq' => 'monthly'],
    ['loc' => $domain . '/privacy-policy.php', 'priority' => '0.4', 'changefreq' => 'yearly'],
    ['loc' => $domain . '/terms.php', 'priority' => '0.4', 'changefreq' => 'yearly'],
];
echo '<?xml version="1.0" encoding="UTF-8"?>';
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<?php foreach ($pages as $p): ?>
    <url><loc><?= $p['loc'] ?></loc><priority><?= $p['priority'] ?></priority><changefreq><?= $p['changefreq'] ?></changefreq></url>
<?php endforeach; ?>
</urlset>
