import type { Metadata } from "next"; import { getMessages } from "@/lib/i18n/server"; import { getEffectiveMarketingLocale } from "@/lib/marketing-locale"; export const metadata: Metadata = { title: "About — Epicure", description: "The story behind Epicure.", }; export default async function AboutPage() { const m = getMessages(await getEffectiveMarketingLocale()); const t = m.marketing.about; return (

{t.title}

{t.paragraphs.map((p, i) => (

{p}

))}
); }