<?xml version="1.0" encoding="UTF-8"?>
<!-- 
  sitemap.xml - 사이트 구조를 검색 엔진에 알려주는 파일
  구글이 사이트를 더 빠르고 정확하게 크롤링할 수 있도록 돕습니다
-->
<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">
  
  <!-- 
    메인 페이지 (가장 중요!)
    실제 도메인으로 변경 필요!
  -->
  <url>
    <loc>https://maplelandheaven.kr/</loc>
    <lastmod>2025-10-12</lastmod>
    <changefreq>daily</changefreq>
    <priority>1.0</priority>
  </url>
  
  <!-- 
    추가 페이지가 있다면 아래 형식으로 추가
    
    예시:
    <url>
      <loc>https://귀하의도메인.com/about</loc>
      <lastmod>2025-10-12</lastmod>
      <changefreq>monthly</changefreq>
      <priority>0.8</priority>
    </url>
  -->
  
</urlset>