8dccd8898b
Language switcher (flag toggle) and dark-mode toggle in the marketing header, both usable by logged-out visitors -- the marketing pages previously hardcoded English (getMessages(undefined)) regardless of any preference, and had no theme control since the authenticated Nav's toggle isn't rendered there. New cookie-based locale resolution (lib/marketing-locale.ts) separate from the authenticated app's useLocale/setLocale, which persists via an authenticated PATCH that would just 401 and revert for an anonymous visitor. Root layout now falls back to that cookie for <html lang> when there's no session. Features/Home now cover cook mode, recipe variations, personalized recommendations, and ingredient substitution -- all real, shipped features that were missing from the page copy. Signup CTAs check isSignupsDisabled() and swap to "Signups closed" instead of "Get started free" -- still linking to /signup, since that page already handles the invite-token exception correctly. Fixed along the way: importing the cookie-name constant from marketing-locale.ts in the client-side LanguageSwitcher pulled that file's server-only imports (lib/auth/server -> the DB client -> `postgres`) into the client bundle, breaking the build on Node built-ins. Split the constant into its own client-safe file (marketing-locale-cookie.ts). Caught by `pnpm build`, not typecheck. Verified with typecheck, lint, and a full production build (clean compile) -- no DB in this sandbox to click through a real dev server. v0.48.1
62 lines
2.5 KiB
TypeScript
62 lines
2.5 KiB
TypeScript
import type { Metadata } from "next";
|
|
import Link from "next/link";
|
|
import { Sparkles, Calendar, Package, MessageCircle, Users, ChefHat, Camera, ListChecks, Utensils, Wand2, Sparkle, Replace } from "lucide-react";
|
|
import { getMessages } from "@/lib/i18n/server";
|
|
import { getEffectiveMarketingLocale } from "@/lib/marketing-locale";
|
|
import { isSignupsDisabled } from "@/lib/site-settings";
|
|
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, cook mode, 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: Utensils, key: "cookMode" },
|
|
{ icon: Wand2, key: "variations" },
|
|
{ icon: Sparkle, key: "recommendations" },
|
|
{ icon: Replace, key: "substitution" },
|
|
{ icon: Calendar, key: "mealPlan" },
|
|
{ icon: Package, key: "pantry" },
|
|
{ icon: ListChecks, key: "shoppingList" },
|
|
{ icon: Users, key: "social" },
|
|
{ icon: ChefHat, key: "batchCook" },
|
|
] as const;
|
|
|
|
export default async function FeaturesPage() {
|
|
const [locale, signupsDisabled] = await Promise.all([getEffectiveMarketingLocale(), isSignupsDisabled()]);
|
|
const m = getMessages(locale);
|
|
const t = m.marketing.features;
|
|
|
|
return (
|
|
<div className="container mx-auto px-4 py-16 space-y-12">
|
|
<div className="text-center space-y-4 max-w-2xl mx-auto">
|
|
<h1 className="text-3xl sm:text-4xl font-bold tracking-tight">{t.title}</h1>
|
|
<p className="text-lg text-muted-foreground">{t.subtitle}</p>
|
|
</div>
|
|
|
|
<div className="grid grid-cols-1 md:grid-cols-2 gap-6 max-w-4xl mx-auto">
|
|
{FEATURES.map(({ icon: Icon, key }) => (
|
|
<div key={key} className="rounded-xl border bg-card p-6 space-y-3">
|
|
<div className="h-10 w-10 rounded-lg bg-primary/10 flex items-center justify-center">
|
|
<Icon className="h-5 w-5 text-primary" />
|
|
</div>
|
|
<h3 className="font-semibold text-lg">{t.items[key].title}</h3>
|
|
<p className="text-sm text-muted-foreground leading-relaxed">{t.items[key].description}</p>
|
|
</div>
|
|
))}
|
|
</div>
|
|
|
|
<div className="text-center pt-4">
|
|
<Link href="/signup" className={cn(buttonVariants({ size: "lg" }))}>
|
|
{signupsDisabled ? m.marketing.nav.signupClosed : t.cta}
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|