<?php
require_once 'config.php';
require_once 'includes/seo.php';

$seo = new SEO();
$sitemapXml = $seo->generateSitemap();

header('Content-Type: application/xml');
echo $sitemapXml;
