import type { Metadata } from "next"; import Link from "next/link"; import { Sparkles, Calendar, Package, MessageCircle, Users, ChefHat, Camera, ListChecks } from "lucide-react"; import { getMessages } from "@/lib/i18n/server"; import { buttonVariants } from "@/components/ui/button"; import { cn } from "@/lib/utils"; export const metadata: Metadata = { title: "Features — Epicure", description: "AI recipe generation, meal planning, pantry tracking, and a cooking assistant that can act on your behalf.", }; const FEATURES = [ { icon: Sparkles, key: "ai" }, { icon: Camera, key: "photoImport" }, { icon: MessageCircle, key: "assistant" }, { icon: Calendar, key: "mealPlan" }, { icon: Package, key: "pantry" }, { icon: ListChecks, key: "shoppingList" }, { icon: Users, key: "social" }, { icon: ChefHat, key: "batchCook" }, ] as const; export default function FeaturesPage() { const m = getMessages(undefined); const t = m.marketing.features; return (
{t.subtitle}
{t.items[key].description}