<?php
require_once 'config/config.php';
require_once 'config/helpers.php';

// Set proper XML content type
header('Content-Type: application/xml; charset=utf-8');
header('Cache-Control: public, max-age=3600'); // Cache for 1 hour

// Generate XML sitemap
echo generateSitemap();
?>
