import { ArrowUpRight, Boxes, CircleDollarSign } from "lucide-react"; import Link from "next/link"; import { MotionFade } from "@/components/motion-fade"; import { pickText, productItems, resolveLocale } from "@/lib/site-data"; type ProductsPageProps = { params: { locale: string; }; }; export default function ProductsPage({ params: { locale } }: ProductsPageProps) { const localeKey = resolveLocale(locale); const copy = localeKey === "de" ? { title: "Produkte", intro: "Pakete fuer Teams von Start bis Skalierung.", open: "Produkt oeffnen", } : { title: "Products", intro: "Packages for teams from early stage to scale.", open: "Open product", }; return (
{copy.intro}
{pickText(item.segment, localeKey)}
{pickText(item.summary, localeKey)}
{copy.open}