"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 NoteFlansPage() { const t = useTranslations(); return ( <>
{/* ── Hero ── */}
{t("about.noteFlansPage.hero.title")} {/* Layered overlays */}
{/* Grain texture */}
{/* Content anchored bottom-left */}
{t("about.noteFlansPage.hero.eyebrow")} {t("about.noteFlansPage.hero.titleLine1")}
{t("about.noteFlansPage.hero.titleLine2")}
{t("about.noteFlansPage.hero.description")} {/* Animated underline */}
{/* ── Content section ── */}
{/* Section label */} {t("about.noteFlansPage.section.label")} {/* Two-column layout: description left, details right */}
{/* Left: main description */}
{t("about.noteFlansPage.section.cta")}
{/* Right: feature list */} {(t.raw("about.noteFlansPage.section.features") as string[]).map( (feature: string, i: number) => (
  • {feature}
  • ), )}
    {/* ── Bottom strip ── */}

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

    ); }