import type { Metadata } from "next"; import { Mail } from "lucide-react"; import { getMessages } from "@/lib/i18n/server"; export const metadata: Metadata = { title: "Contact — Epicure", description: "Get in touch with the Epicure team.", }; const SUPPORT_EMAIL = "support@epicure.app"; export default function ContactPage() { const m = getMessages(undefined); const t = m.marketing.contact; return (

{t.title}

{t.subtitle}

{SUPPORT_EMAIL}
); }