"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 NoteTrailerPage() { const t = useTranslations(); return ( <>
{/* Hero Section */}
{t("about.noteTrailerPage.hero.title")}
{t("about.noteTrailerPage.hero.eyebrow")} {t("about.noteTrailerPage.hero.titleLine1")}
{t("about.noteTrailerPage.hero.titleLine2")}
{t("about.noteTrailerPage.hero.description")}
{/* Content Section */}
{t("about.noteTrailerPage.section.label")}
{t("about.noteTrailerPage.section.cta")}
{( t.raw("about.noteTrailerPage.section.features") as string[] ).map((feature: string, i: number) => (
  • {feature}
  • ))}
    {/* Bottom strip */}

    {t("about.noteTrailerPage.footer.label")}

    ); }