export const sitemapXmlRoute = app.get('/', async (ctx, req) => { const host = ctx.account?.host || req.headers.host || 'domresheniy.chatium.ru'; const sitemap = ` https://${host}/glavnaya weekly 1.0 https://${host}/glavnaya#about monthly 0.8 https://${host}/glavnaya#procedure monthly 0.8 https://${host}/glavnaya#cases monthly 0.7 https://${host}/glavnaya#unblock monthly 0.8 https://${host}/glavnaya#quiz weekly 0.9 https://${host}/glavnaya#faq monthly 0.6 `; return new Response(sitemap, { headers: { 'Content-Type': 'application/xml; charset=utf-8', }, }); });