"use client"; import Image from "next/image"; import { motion } from "framer-motion"; import { FileText, ChevronRight } from "lucide-react"; import { useTranslations } from "next-intl"; import { Statistics } from "@/components/pages/home"; const ease = [0.22, 1, 0.36, 1] as [number, number, number, number]; export default function NotePPPage() { const t = useTranslations(); return ( <> {/* Hero Section */} {t("about.notePPPage.hero.eyebrow")} {t("about.notePPPage.hero.titleLine1")} {t("about.notePPPage.hero.titleLine2")} {t("about.notePPPage.hero.description")} {/* Content Section */} {t("about.notePPPage.section.label")} {t("about.notePPPage.section.cta")} {(t.raw("about.notePPPage.section.features") as string[]).map( (feature: string, i: number) => ( {feature} ), )} {/* Bottom strip */} {t("about.notePPPage.footer.label")} > ); }
{t("about.notePPPage.footer.label")}