<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <!-- Homepage -->
  <url>
    <loc>https://ellaweddings.com/</loc>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
  </url>

  <!-- Main Application Pages -->
  <url>
    <loc>https://ellaweddings.com/onboarding</loc>
    <changefreq>weekly</changefreq>
    <priority>0.9</priority>
  </url>

  <!-- Legal Pages -->
  <url>
    <loc>https://ellaweddings.com/terms</loc>
    <changefreq>monthly</changefreq>
    <priority>0.5</priority>
  </url>
  <url>
    <loc>https://ellaweddings.com/privacy</loc>
    <changefreq>monthly</changefreq>
    <priority>0.5</priority>
  </url>
</urlset>

<!-- 
  Auto-generation Note:
  To automatically regenerate this sitemap when routes change:
  1. Create a script that reads routes from App.tsx
  2. Filter out private routes and NotFound
  3. Generate XML with appropriate priorities
  4. Save to public/sitemap.xml
  
  Example script structure:
  ```
  import { readFileSync, writeFileSync } from 'fs';
  import { parse } from '@babel/parser';
  import traverse from '@babel/traverse';
  
  // Read App.tsx and parse routes
  // Filter public routes
  // Generate sitemap XML
  // Write to public/sitemap.xml
  ```
--> 