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

$urls = [
    'https://www.exaasolar.com.ar/',
    'https://www.exaasolar.com.ar/contacto.php',
    'https://www.exaasolar.com.ar/sistemas.php',
    'https://www.exaasolar.com.ar/proyectos.php'
];

echo '<?xml version="1.0" encoding="UTF-8"?>';
echo '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">';
foreach ($urls as $url) {
    echo '<url>';
    echo '<loc>' . $url . '</loc>';
    echo '<lastmod>' . date('Y-m-d') . '</lastmod>';
    echo '<changefreq>weekly</changefreq>';
    echo '<priority>0.8</priority>';
    echo '</url>';
}
echo '</urlset>';
?>