feat: setup database-driven admin user management
This commit is contained in:
@@ -1,5 +1,20 @@
|
||||
import { MapPin, Phone, Mail, Clock } from "lucide-react";
|
||||
import ScrollReveal from "@/components/ScrollReveal";
|
||||
import { buildMeta } from "@/lib/metadata";
|
||||
import type { Metadata } from "next";
|
||||
|
||||
export const revalidate = 3600;
|
||||
|
||||
export async function generateMetadata({ params }: { params: Promise<{ lang: string }> }): Promise<Metadata> {
|
||||
const { lang } = await params;
|
||||
return buildMeta(lang, "/iletisim", {
|
||||
title: "İletişim & Rezervasyon | Kite Beach Akyaka",
|
||||
description: "Kite Beach Akyaka ile iletişime geçin. Muğla Akyaka'da kitesurf dersi, konaklama ve etkinlik rezervasyonu için bize yazın.",
|
||||
}, {
|
||||
title: "Contact & Reservation | Kite Beach Akyaka",
|
||||
description: "Contact Kite Beach Akyaka. Write to us for kitesurf lessons, accommodation and event reservations in Akyaka, Muğla.",
|
||||
});
|
||||
}
|
||||
|
||||
export default function IletisimPage() {
|
||||
return (
|
||||
|
||||
Reference in New Issue
Block a user