<?php
/**
 * Sitemap XML optimisé SEO
 */

$siteUrl = 'https://www.lagracegroupe.com';

// Liste des pages avec dates réalistes
$pages = [
    ['loc' => '/',              'priority' => '1.0', 'changefreq' => 'weekly'],
    ['loc' => '/services',      'priority' => '0.9', 'changefreq' => 'monthly'],
    ['loc' => '/a-propos',      'priority' => '0.7', 'changefreq' => 'yearly'],
    ['loc' => '/recrutement',   'priority' => '0.8', 'changefreq' => 'weekly'],
    ['loc' => '/contact',       'priority' => '0.6', 'changefreq' => 'yearly'],
];

// En-tête XML
header('Content-Type: application/xml; charset=utf-8');
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><?= $siteUrl . htmlspecialchars($page['loc'], ENT_QUOTES, 'UTF-8'); ?></loc>
        <lastmod><?= date('Y-m-d', filemtime(__DIR__ . '/index.php')); ?></lastmod>
        <changefreq><?= $page['changefreq']; ?></changefreq>
        <priority><?= $page['priority']; ?></priority>
    </url>
<?php endforeach; ?>

</urlset>