Files
moygroup/app/llms.txt/route.ts
T
mstfyldz e1d8bae5a4 feat(seo): implement SEO audit remediations
- Add dynamic sitemap.ts, robots.ts, and llms.txt route
- Add metadataBase and JSON-LD Organization schema to layout
- Set canonical alternates for all routes
- Migrate raw img tags to next/image for LCP optimization
- Add SEO dictionary strings to tr.json and en.json
2026-06-04 12:29:19 +03:00

26 lines
823 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { NextResponse } from 'next/server'
export async function GET() {
const content = `# Moy Group - llms.txt
Moy Group operates premium tourism venues in Akyaka, Akçapınar, and Datça, Turkey.
Our main venues include:
- Moy Beach (Akyaka) - A premium beach and gastronomy experience.
- Kite Beach Hotel (Akçapınar) - A boutique hotel right by the kiteboard beach.
- Volkswagen Kite Surfing (Akçapınar) - Professional kitesurf training and equipment rental.
We offer sustainable and nature-respectful holiday experiences with local Aegean flavors and excellent accommodation.
Website: https://moygroup.com.tr
Locations: Akyaka, Datça, Akçapınar (Muğla, Turkey)
`
return new NextResponse(content, {
status: 200,
headers: {
'Content-Type': 'text/plain; charset=utf-8',
},
})
}