feat: setup database-driven admin user management
This commit is contained in:
@@ -4,6 +4,21 @@ import { ArrowRight, Clock, Users } from "lucide-react";
|
||||
import ScrollReveal from "@/components/ScrollReveal";
|
||||
|
||||
import prisma from "@/lib/prisma";
|
||||
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, "/aktiviteler", {
|
||||
title: "Aktiviteler | Kite Beach Akyaka",
|
||||
description: "Kitesurf, yoga, SUP ve bisiklet kiralama. Akyaka'nın doğasında IKO sertifikalı eğitmenlerle unutulmaz deneyimler.",
|
||||
}, {
|
||||
title: "Activities | Kite Beach Akyaka",
|
||||
description: "Kitesurf, yoga, SUP and bicycle rental. Unforgettable experiences in Akyaka with IKO certified instructors.",
|
||||
});
|
||||
}
|
||||
|
||||
export default async function AktivitelerPage({ params }: { params: Promise<{ lang: string }> }) {
|
||||
const { lang } = await params;
|
||||
|
||||
Reference in New Issue
Block a user