<?php
header("Content-Type: application/xml; charset=UTF-8");
include "db.php"; // optional if you need article data

$base_url = "https://mejics.com";

echo '<?xml version="1.0" encoding="UTF-8"?>';
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <!-- ✅ Home -->
  <url>
    <loc><?= $base_url ?>/</loc>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
  </url>

  <!-- ✅ Produk Pages -->
  <url><loc><?= $base_url ?>/produk/software-pos-umkm.php</loc><changefreq>monthly</changefreq><priority>0.9</priority></url>
  <url><loc><?= $base_url ?>/produk/aplikasi-kasir-restoran.php</loc><changefreq>monthly</changefreq><priority>0.9</priority></url>
  <url><loc><?= $base_url ?>/produk/software-simrs-rumah-sakit.php</loc><changefreq>monthly</changefreq><priority>0.9</priority></url>
  <url><loc><?= $base_url ?>/produk/software-logistik-distribusi.php</loc><changefreq>monthly</changefreq><priority>0.9</priority></url>
  <url><loc><?= $base_url ?>/produk/sistem-manajemen-sekolah.php</loc><changefreq>monthly</changefreq><priority>0.9</priority></url>
  <url><loc><?= $base_url ?>/produk/software-hris-sdm.php</loc><changefreq>monthly</changefreq><priority>0.9</priority></url>
  <url><loc><?= $base_url ?>/produk/software-akuntansi-bisnis.php</loc><changefreq>monthly</changefreq><priority>0.9</priority></url>
  <url><loc><?= $base_url ?>/produk/aplikasi-crm-penjualan.php</loc><changefreq>monthly</changefreq><priority>0.9</priority></url>
  <url><loc><?= $base_url ?>/produk/learning-management-system.php</loc><changefreq>monthly</changefreq><priority>0.9</priority></url>

  <!-- ✅ Artikel List -->
  <url>
    <loc><?= $base_url ?>/artikel-list.php</loc>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>

  <?php
  // ✅ Tambahkan semua artikel dari database
  if (isset($conn)) {
      $artikel = $conn->query("SELECT id, tanggal FROM artikel ORDER BY tanggal DESC");
      if ($artikel) {
          while ($row = $artikel->fetch_assoc()) {
              $url = $base_url . "/artikel.php?id=" . $row['id'];
              $date = date('Y-m-d', strtotime($row['tanggal']));
              ?>
              <url>
                <loc><?= htmlspecialchars($url) ?></loc>
                <lastmod><?= $date ?></lastmod>
                <changefreq>monthly</changefreq>
                <priority>0.7</priority>
              </url>
              <?php
          }
      }
  }
  ?>
</urlset>
