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

$pages = [
    ['loc' => 'index.php', 'priority' => '1.0', 'changefreq' => 'weekly'],
    ['loc' => 'about.php', 'priority' => '0.8', 'changefreq' => 'monthly'],
    ['loc' => 'services.php', 'priority' => '0.9', 'changefreq' => 'monthly'],
    ['loc' => 'international-recruitment-services.php', 'priority' => '0.7', 'changefreq' => 'monthly'],
    ['loc' => 'work-permit-support.php', 'priority' => '0.7', 'changefreq' => 'monthly'],
    ['loc' => 'cv-profile-assessment.php', 'priority' => '0.7', 'changefreq' => 'monthly'],
    ['loc' => 'documentation-support.php', 'priority' => '0.7', 'changefreq' => 'monthly'],
    ['loc' => 'interview-preparation.php', 'priority' => '0.7', 'changefreq' => 'monthly'],
    ['loc' => 'employer-talent-solutions.php', 'priority' => '0.7', 'changefreq' => 'monthly'],
    ['loc' => 'countries.php', 'priority' => '0.8', 'changefreq' => 'monthly'],
    ['loc' => 'for-applicants.php', 'priority' => '0.9', 'changefreq' => 'weekly'],
    ['loc' => 'for-employers.php', 'priority' => '0.9', 'changefreq' => 'weekly'],
    ['loc' => 'faq.php', 'priority' => '0.6', 'changefreq' => 'monthly'],
    ['loc' => 'blog.php', 'priority' => '0.8', 'changefreq' => 'weekly'],
    ['loc' => 'contact.php', 'priority' => '0.7', 'changefreq' => 'monthly'],
    ['loc' => 'privacy-policy.php', 'priority' => '0.3', 'changefreq' => 'yearly'],
    ['loc' => 'terms-of-service.php', 'priority' => '0.3', 'changefreq' => 'yearly'],
    ['loc' => 'cookie-policy.php', 'priority' => '0.3', 'changefreq' => 'yearly'],
];
$posts = readJSON(__DIR__ . '/data/blog.json');
foreach ($posts as $p) {
    $pages[] = ['loc' => 'blog-post.php?slug=' . $p['slug'], 'priority' => '0.6', 'changefreq' => 'monthly'];
}
?>
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<?php foreach ($pages as $p): ?>
    <url>
        <loc>https://<?= SITE_DOMAIN ?>/<?= $p['loc'] ?></loc>
        <priority><?= $p['priority'] ?></priority>
        <changefreq><?= $p['changefreq'] ?></changefreq>
        <lastmod><?= date('Y-m-d') ?></lastmod>
    </url>
<?php endforeach; ?>
</urlset>
