export async function GET() {
  const sitemap = `<?xml version="1.0" encoding="UTF-8"?>
  <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
    <url>
      <loc>https://orangym.co.kr/</loc>
      <priority>1.0</priority>
    </url>
    <url>
      <loc>https://orangym.co.kr/about</loc>
      <priority>0.8</priority>
    </url>
    <url>
      <loc>https://orangym.co.kr/facility</loc>
      <priority>0.8</priority>
    </url>
    <url>
      <loc>https://orangym.co.kr/consult</loc>
      <priority>0.7</priority>
    </url>
    <url>
      <loc>https://orangym.co.kr/location</loc>
      <priority>0.7</priority>
    </url>
  </urlset>`;

  return new Response(sitemap, {
    headers: {
      'Content-Type': 'application/xml',
    },
  });
}