import { SectionHeader } from "@/app/components/ui/section-header"; import { Badge } from "@/app/components/ui/badge"; import { getDictionary, Locale } from "../../dictionaries"; export async function generateMetadata({ params }: { params: Promise<{ lang: string }> }) { const { lang } = await params; const dict = await getDictionary(lang as Locale); return { title: dict.seo.menu.title, description: dict.seo.menu.description, alternates: { canonical: `/${lang}/menu`, }, }; } export default async function MenuPage({ params, }: { params: Promise<{ lang: string }>; }) { const { lang } = await params; const locale = lang as Locale; const dict = await getDictionary(locale); const t = dict.menu; const MENU_SECTIONS = [ { title: t.starters, badge: "Starters", variant: "gold" as const, items: [ { name: "Zeytinyağlı Enginar", desc: "Taze dereotu ve limon", price: "₺ 185" }, { name: "Ahtapot Izgara", desc: "Kapari salatası, fesleğen yağı", price: "₺ 340" }, { name: "Kabak Çiçeği Dolması", desc: "Lor peyniri, nane", price: "₺ 210" }, { name: "Ezme Tabağı", desc: "Ev yapımı ekmek ile", price: "₺ 145" }, ], }, { title: t.mains, badge: "Mains", variant: "blue" as const, items: [ { name: "Levrek Izgara", desc: "Mevsim yeşillikleri, limon yağı", price: "₺ 680" }, { name: "Çipura Fırın", desc: "Ege otları, domates, zeytinyağı", price: "₺ 620" }, { name: "Kuzu Pirzola", desc: "Kekik soslu, ızgara sebze", price: "₺ 750" }, { name: "Mantar Risotto", desc: "Porcini, parmesan, taze kekik", price: "₺ 390" }, ], }, { title: t.desserts, badge: "Desserts", variant: "green" as const, items: [ { name: "Incir Tatlısı", desc: "Kaymak, ceviz, pekmez", price: "₺ 175" }, { name: "Dondurma Tabağı", desc: "Yerel bademli, mevsim meyve", price: "₺ 145" }, { name: "Kemalpaşa", desc: "Sıcak servis, dövme ceviz", price: "₺ 120" }, ], }, { title: t.drinks, badge: "Drinks", variant: "dark" as const, items: [ { name: "Datça Badem Şerbeti", desc: "Ev yapımı, taze", price: "₺ 95" }, { name: "Limonata", desc: "Taze sıkım, nane", price: "₺ 85" }, { name: "Lokal Şarap", desc: "Günlük seçki", price: "₺ 195 / bardak" }, { name: "Soda & Maden Suyu", desc: "", price: "₺ 45" }, ], }, ]; return (
{/* Hero */}

{t.eyebrow}

{t.title}

{t.subtitle}

{MENU_SECTIONS.map((section) => (

{section.title}

{section.badge}
{section.items.map((item) => (

{item.name}

{item.desc && (

{item.desc}

)}
{item.price}
))}
))}

{t.note}

); }