<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  
  <!-- Homepage -->
  <url>
    <loc>https://raely.co.zw/</loc>
    <lastmod>2025-11-28</lastmod>
    <changefreq>daily</changefreq>
    <priority>1.0</priority>
  </url>
  
  <!-- Shop Pages -->
  <url>
    <loc>https://raely.co.zw/shop</loc>
    <lastmod>2025-11-28</lastmod>
    <changefreq>daily</changefreq>
    <priority>0.9</priority>
  </url>
  
  <url>
    <loc>https://raely.co.zw/deals</loc>
    <lastmod>2025-11-28</lastmod>
    <changefreq>daily</changefreq>
    <priority>0.9</priority>
  </url>
  
  <!-- Category Pages -->
  <url>
    <loc>https://raely.co.zw/category</loc>
    <lastmod>2025-11-28</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  
  <!-- Information Pages -->
  <url>
    <loc>https://raely.co.zw/about</loc>
    <lastmod>2025-11-28</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.7</priority>
  </url>
  
  <url>
    <loc>https://raely.co.zw/contact</loc>
    <lastmod>2025-11-28</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.7</priority>
  </url>
  
  <url>
    <loc>https://raely.co.zw/customer-services</loc>
    <lastmod>2025-11-28</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.7</priority>
  </url>
  
  <!-- Legal & Policy Pages -->
  <url>
    <loc>https://raely.co.zw/legal</loc>
    <lastmod>2025-11-28</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.5</priority>
  </url>
  
  <url>
    <loc>https://raely.co.zw/privacy</loc>
    <lastmod>2025-11-28</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.5</priority>
  </url>
  
  <url>
    <loc>https://raely.co.zw/shipping</loc>
    <lastmod>2025-11-28</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.6</priority>
  </url>
  
  <!-- Support Pages -->
  <url>
    <loc>https://raely.co.zw/support</loc>
    <lastmod>2025-11-28</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.7</priority>
  </url>
  
  <!-- 
    DYNAMIC ROUTES (Categories & Products):
    
    For production use, you should implement dynamic sitemap generation
    to automatically include all category and product pages from your database.
    
    Next.js provides a built-in way to generate dynamic sitemaps:
    https://nextjs.org/docs/app/api-reference/file-conventions/metadata/sitemap
    
    Example implementation in src/app/sitemap.ts:
    
    import { MetadataRoute } from 'next'
    import { db } from '@/lib/db'
    
    export default async function sitemap(): Promise<MetadataRoute.Sitemap> {
      const categories = await db.category.findMany({ select: { slug: true, updatedAt: true } })
      const products = await db.product.findMany({ select: { slug: true, updatedAt: true } })
      
      return [
        // Static pages...
        ...categories.map(cat => ({
          url: `https://raely.co.zw/category/${cat.slug}`,
          lastModified: cat.updatedAt,
          changeFrequency: 'weekly' as const,
          priority: 0.8,
        })),
        ...products.map(product => ({
          url: `https://raely.co.zw/shop/${product.slug}`,
          lastModified: product.updatedAt,
          changeFrequency: 'weekly' as const,
          priority: 0.6,
        })),
      ]
    }
  -->
  
</urlset>
