<?php
header('Content-Type: application/xml; charset=utf-8');

$baseUrl = 'https://cadouri-cool.ro';
$date = date('Y-m-d');

$pages = [
    ['/', 'daily', 1.0],
    ['/pescuit', 'daily', 0.9],
    ['/jocuri-cu-dinozauri', 'weekly', 0.8],
    ['/dinotam', 'weekly', 0.7],
    ['/joc-cu-dinozauri', 'weekly', 0.7],
    ['/dinozaur-virtual', 'weekly', 0.7],
    ['/login-dinozaur', 'weekly', 0.6],
    ['/inregistrare-dinozaur', 'weekly', 0.6],
    ['/privacy', 'monthly', 0.5],
    ['/terms', 'monthly', 0.5],
    ['/scrie-mosului', 'monthly', 0.5],
    ['/toy', 'monthly', 0.4]
];

echo '<?xml version="1.0" encoding="UTF-8"?>';
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
    <?php foreach ($pages as $page): ?>
    <url>
        <loc><?php echo $baseUrl . $page[0]; ?></loc>
        <lastmod><?php echo $date; ?></lastmod>
        <changefreq><?php echo $page[1]; ?></changefreq>
        <priority><?php echo $page[2]; ?></priority>
    </url>
    <?php endforeach; ?>
</urlset>