<?xml version="1.0" encoding="UTF-8"?>
<!--
  Resorim Sitemap Index
  =====================
  Blog yazıları dinamik olarak API tarafından üretilir.
  Yeni blog eklendiğinde bu dosyayı güncellemeye GEREK YOK.

  API'de oluşturulan tam sitemap:
    GET /sitemap.xml  →  SitemapController.cs

  Nginx proxy örneği (www.resorim.com/sitemap-blog.xml isteğini API'ye yönlendir):
    location = /sitemap-blog.xml {
        proxy_pass https://api.resorim.com/sitemap.xml;
        proxy_set_header Host $host;
    }

  Google Search Console'a ekle: https://www.resorim.com/sitemap.xml
-->
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">

  <!-- Statik sayfalar: landing, quiz, yasal -->
  <sitemap>
    <loc>https://www.resorim.com/sitemap-static.xml</loc>
    <lastmod>2026-03-29</lastmod>
  </sitemap>

  <!-- Blog yazıları — API'den dinamik, DB'ye göre otomatik güncellenir -->
  <sitemap>
    <loc>https://www.resorim.com/sitemap-blog.xml</loc>
    <lastmod>2026-03-29</lastmod>
  </sitemap>

</sitemapindex>
