<?php
require_once __DIR__ . '/partials/helpers.php';
header('Content-Type: application/xml; charset=UTF-8');
$paths = ['/', '/life/', '/stories/', '/videos/', '/ai-inspiration/', '/creator/', '/contact/', '/slow-life/', '/healing-gallery/', '/inspiration-workshop/', '/emotion-treehole/', '/quality-life/'];
echo '<?xml version="1.0" encoding="UTF-8"?>' . "
";
echo '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">' . "
";
foreach ($paths as $path) {
    echo '  <url><loc>' . e(absolute_url($path)) . '</loc><lastmod>' . date('Y-m-d') . '</lastmod><changefreq>daily</changefreq><priority>' . ($path === '/' ? '1.0' : '0.8') . '</priority></url>' . "
";
}
echo '</urlset>' . "
";
?>
