59 lines
2.3 KiB
TypeScript
59 lines
2.3 KiB
TypeScript
export const dynamic = 'force-static';
|
||
|
||
export function GET() {
|
||
const body = `# Kite Beach Akyaka
|
||
|
||
> Kite Beach Akyaka is a boutique kitesurf hotel and beach club located on the banks of the Azmak River in Akyaka, Muğla, Turkey. It offers kitesurf lessons (IKO-certified), accommodation, an Aegean restaurant & bar, and various outdoor activities.
|
||
|
||
- Turkish site: https://kitebeachakyaka.com.tr/tr
|
||
- English site: https://kitebeachakyaka.com.tr/en
|
||
|
||
## Key Information
|
||
|
||
- **Location**: Akyaka Mahallesi, Akçapınar Mevkii, Akyaka, Muğla, Turkey
|
||
- **Coordinates**: 37.0543° N, 28.3286° E
|
||
- **Phone / WhatsApp**: +90 533 081 6181
|
||
- **Email**: info@kitebeachakyaka.com.tr
|
||
- **Reception hours**: 08:00 – 22:00 daily
|
||
- **Type**: Boutique hotel, kitesurf school, beach club, restaurant & bar
|
||
|
||
## Site Sections
|
||
|
||
- Home / Ana Sayfa: https://kitebeachakyaka.com.tr/tr
|
||
- Activities / Aktiviteler: https://kitebeachakyaka.com.tr/tr/aktiviteler
|
||
- Events / Etkinlikler: https://kitebeachakyaka.com.tr/tr/etkinlikler
|
||
- Restaurant & Bar / Restoran: https://kitebeachakyaka.com.tr/tr/restoran
|
||
- About / Hakkımızda: https://kitebeachakyaka.com.tr/tr/hakkimizda
|
||
- Gallery / Galeri: https://kitebeachakyaka.com.tr/tr/galeri
|
||
- Contact / İletişim: https://kitebeachakyaka.com.tr/tr/iletisim
|
||
|
||
## Services
|
||
|
||
- **Kitesurf school**: IKO-certified instructors, beginner to advanced lessons, equipment rental
|
||
- **Accommodation**: Boutique rooms with river and sea views
|
||
- **Restaurant**: Aegean cuisine, breakfast spreads, mezze, fresh seafood, sunset cocktails
|
||
- **Activities**: Stand-up paddleboarding, cycling, boat tours, photography tours
|
||
- **Events**: Concerts (Mahmut Orhan), kitesurf festivals, sunset parties, private events
|
||
|
||
## About
|
||
|
||
Kite Beach Akyaka was founded with the mission of combining kitesurf passion with nature, comfort, and local flavors on the banks of the Azmak River — where the river meets the Gökova Bay. The property emphasises sustainability, zero-waste practices, and sourcing ingredients from local Aegean producers.
|
||
|
||
- 10+ years of experience
|
||
- 500+ happy guests
|
||
- 3 IKO-certified instructors
|
||
- Supports sustainable tourism in Akyaka
|
||
|
||
## Languages
|
||
|
||
This site is fully bilingual: Turkish (default) and English.
|
||
`;
|
||
|
||
return new Response(body, {
|
||
headers: {
|
||
'Content-Type': 'text/plain; charset=utf-8',
|
||
'Cache-Control': 'public, max-age=86400',
|
||
},
|
||
});
|
||
}
|