feat: setup database-driven admin user management
This commit is contained in:
@@ -2,6 +2,21 @@ import Image from "next/image";
|
||||
import Link from "next/link";
|
||||
import { Coffee, Wine, UtensilsCrossed, 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, "/restoran", {
|
||||
title: "Restoran & Bar | Kite Beach Akyaka",
|
||||
description: "Ege mutfağının taze lezzetleri, gün batımı kokteyller ve Azmak nehri manzarası. Serpme kahvaltı, Ege mezeleri ve akşam yemekleri.",
|
||||
}, {
|
||||
title: "Restaurant & Bar | Kite Beach Akyaka",
|
||||
description: "Fresh flavors of Aegean cuisine, sunset cocktails and views of the Azmak river. Breakfast spread, Aegean meze and dinner.",
|
||||
});
|
||||
}
|
||||
|
||||
const menuCategories = [
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user