<?php
// sitemap.php - Генератор карты сайта
header('Content-Type: application/xml; charset=utf-8');

$siteUrl = 'https://quickluck.ru';

// Страницы для индексации
$pages = [
    ['url' => '/', 'priority' => '1.0', 'changefreq' => 'daily'],
    ['url' => '/index.php', 'priority' => '1.0', 'changefreq' => 'daily'],
    ['url' => '/dashboard.php', 'priority' => '0.8', 'changefreq' => 'weekly'],
    ['url' => '/loto/host.php', 'priority' => '0.9', 'changefreq' => 'daily'],
    ['url' => '/loto/subscribe.php', 'priority' => '0.7', 'changefreq' => 'weekly'],
    ['url' => '/loto/instructions.php', 'priority' => '0.6', 'changefreq' => 'monthly'],
    ['url' => '/loto/winners_screen.php', 'priority' => '0.5', 'changefreq' => 'weekly'],
    ['url' => '/profile-settings.php', 'priority' => '0.6', 'changefreq' => 'monthly'],
];

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>' . "\n";
    echo '    <loc>' . $siteUrl . $page['url'] . '</loc>' . "\n";
    echo '    <lastmod>' . date('Y-m-d') . '</lastmod>' . "\n";
    echo '    <changefreq>' . $page['changefreq'] . '</changefreq>' . "\n";
    echo '    <priority>' . $page['priority'] . '</priority>' . "\n";
    echo '  </url>' . "\n";
}

echo '</urlset>';
?>