<?php
// sitemap.php
// Dynamic XML Generator for SEO

header("Content-Type: application/xml; charset=utf-8");

$base_url = "https://xho.ro";
$langs = ['en', 'ro', 'de'];
$pages = [
    '' => '1.0',
    '#services' => '0.8',
    '#pricing' => '0.9',
    '#contact' => '0.7'
];

echo '<?xml version="1.0" encoding="UTF-8"?>';
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
    <?php foreach($langs as $lang): ?>
        <?php foreach($pages as $path => $priority): ?>
    <url>
        <loc><?= $base_url . '/' . $path . '?lang=' . $lang ?></loc>
        <lastmod><?= date('Y-m-d') ?></lastmod>
        <changefreq>weekly</changefreq>
        <priority><?= $priority ?></priority>
    </url>
        <?php endforeach; ?>
    <?php endforeach; ?>
</urlset>