import { NextResponse } from 'next/server'; export async function GET() { const sitemap = ` http://localhost:3000/zh-CN daily 1.0 http://localhost:3000/zh-CN/about weekly 0.8 http://localhost:3000/zh-CN/services weekly 0.8 http://localhost:3000/zh-CN/solutions weekly 0.8 http://localhost:3000/zh-CN/pricing weekly 0.7 http://localhost:3000/zh-CN/news daily 0.7 http://localhost:3000/zh-CN/contact monthly 0.6 `; return new NextResponse(sitemap, { headers: { 'Content-Type': 'application/xml', 'Cache-Control': 'public, max-age=3600, s-maxage=3600', }, }); }