<?xml version="1.0" encoding="UTF-8"?>
<!--
  AurelTable — sitemap.xml
  Documentazione: https://www.sitemaps.org/

  STRATEGIA TEMPORANEA: sitemap statica con home + ristoranti attivi.
  Aggiungere a mano ogni nuovo ristorante in produzione finché non
  costruiremo Edge Function `_edge-functions/sitemap/index.ts` che
  legge da DB tutti i ristoranti con active=true e genera questo XML
  on-demand.

  Per ora: 1 home + 1 ristorante test (La Pignata).
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">

  <url>
    <loc>https://useaurel.com/</loc>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
  </url>

  <url>
    <loc>https://useaurel.com/la-pignata</loc>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>

</urlset>
