import type { APIRoute } from 'astro'

export const GET: APIRoute = () => {
  const content = `User-agent: *
Allow: /

Disallow: /go/
Disallow: /api/

Sitemap: https://casinoguidese.com/sitemap.xml
`
  return new Response(content, {
    headers: { 'Content-Type': 'text/plain; charset=utf-8' },
  })
}
