<?php
declare(strict_types=1);
require_once __DIR__ . '/includes/config.php';
header('Content-Type: application/xml; charset=UTF-8');
$pages = [
    ['index.php', '1.0'],
    ['privacy-policy.php', '0.5'],
    ['terms-of-sale.php', '0.5'],
    ['payment-delivery.php', '0.5'],
    ['returns-refunds.php', '0.5'],
    ['cookie-policy.php', '0.5'],
    ['contact.php', '0.6'],
    ['medical-disclaimer.php', '0.5']
];
echo '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
echo '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">' . "\n";
foreach ($pages as $page) {
    echo '<url><loc>' . htmlspecialchars($site['site_url'] . '/' . $page[0], ENT_XML1 | ENT_QUOTES, 'UTF-8') . '</loc><lastmod>' . date('Y-m-d') . '</lastmod><changefreq>monthly</changefreq><priority>' . $page[1] . '</priority></url>' . "\n";
}
echo '</urlset>';
