from pathlib import Path

# Define sitemap XML content
sitemap_content = """<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">

  <url>
    <loc>https://www.ampcinc.com/</loc>
    <lastmod>2025-05-24</lastmod>
    <changefreq>weekly</changefreq>
    <priority>1.00</priority>
  </url>

  <url>
    <loc>https://www.ampcinc.com/electropolishing</loc>
    <lastmod>2025-05-24</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.90</priority>
  </url>

  <url>
    <loc>https://www.ampcinc.com/passivation</loc>
    <lastmod>2025-05-24</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.90</priority>
  </url>

  <url>
    <loc>https://www.ampcinc.com/plating</loc>
    <lastmod>2025-05-24</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.85</priority>
  </url>

  <url>
    <loc>https://www.ampcinc.com/certifications</loc>
    <lastmod>2025-05-24</lastmod>
    <changefreq>yearly</changefreq>
    <priority>0.70</priority>
  </url>

  <url>
    <loc>https://www.ampcinc.com/contact</loc>
    <lastmod>2025-05-24</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.80</priority>
  </url>

</urlset>
"""

# Save the content to a file
sitemap_path = Path("/mnt/data/sitemap.xml")
sitemap_path.write_text(sitemap_content)
