feat: setup database-driven admin user management

This commit is contained in:
2026-06-10 04:25:54 +03:00
parent f542efb324
commit b712760825
23 changed files with 804 additions and 40 deletions
+58
View File
@@ -0,0 +1,58 @@
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',
},
});
}