<?xml version="1.0" encoding="UTF-8"?>
<urlset
      xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
            http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
            
    <!-- 📌 STATİK SAYFALAR -->
    <url>
        <loc>https://www.nexthomeinturkey.com/</loc>
        <lastmod>2025-09-06</lastmod>
        <changefreq>daily</changefreq>
        <priority>1.00</priority>
    </url>
    <url>
        <loc>https://www.nexthomeinturkey.com/projeler</loc>
        <lastmod>2025-09-06</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.80</priority>
    </url>
    <url>
        <loc>https://www.nexthomeinturkey.com/hizmetler</loc>
        <lastmod>2025-09-06</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.80</priority>
    </url>
    <url>
        <loc>https://www.nexthomeinturkey.com/portfolio</loc>
        <lastmod>2025-09-06</lastmod>
        <changefreq>weekly</changefreq>
        <priority>0.90</priority>
    </url>
    <url>
        <loc>https://www.nexthomeinturkey.com/gizlilik-politikasi</loc>
        <lastmod>2025-09-06</lastmod>
        <changefreq>yearly</changefreq>
        <priority>0.30</priority>
    </url>
    <url>
        <loc>https://www.nexthomeinturkey.com/kullanim-sartlari</loc>
        <lastmod>2025-09-06</lastmod>
        <changefreq>yearly</changefreq>
        <priority>0.30</priority>
    </url>

    <!-- 📌 ÖNE ÇIKAN PROJE DETAY SAYFALARI -->
    <url>
        <loc>https://www.nexthomeinturkey.com/gloria-details</loc>
        <lastmod>2025-09-06</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.70</priority>
    </url>
    <url>
        <loc>https://www.nexthomeinturkey.com/riverside-details</loc>
        <lastmod>2025-09-06</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.70</priority>
    </url>

    <!-- 📌 DYNAMIC ILANLAR -->
    <?php
    // PHP ile veritabanından aktif ilanları çek
    require_once('admin/dist/pages/database.php');
    $sql = "SELECT * FROM portfolio_items WHERE status = 'active'";
    $stmt = $conn->prepare($sql);
    $stmt->execute();
    $items = $stmt->fetchAll(PDO::FETCH_ASSOC);

    foreach ($items as $item) {
        $lastmod = date('Y-m-d', strtotime($item['last_updated']));
        echo "
    <url>
        <loc>https://www.nexthomeinturkey.com/listing-details.php?id={$item['id']}</loc>
        <lastmod>{$lastmod}</lastmod>
        <changefreq>weekly</changefreq>
        <priority>0.60</priority>
    </url>";
    }
    ?>
</urlset>