"use client"; import Image from "next/image"; import { motion } from "framer-motion"; import { useTranslations } from "next-intl"; import { Guides } from "@/components/pages/about/aboutDetail/guides"; const ease = [0.22, 1, 0.36, 1] as [number, number, number, number]; export default function NotePPPage() { const t = useTranslations(); const guides = [ { image: "/images/about/pp.avif", title: t("about.notePPPage.hero.title"), description: t("about.notePPPage.hero.description"), eyebrow: t("about.notePPPage.hero.eyebrow"), titleLine1: t("about.notePPPage.hero.titleLine1"), titleLine2: t("about.notePPPage.hero.titleLine2"), }, { image: "/images/about/pp.avif", title: t("about.noteTrailerPage.hero.title"), description: t("about.noteTrailerPage.hero.description"), eyebrow: t("about.noteTrailerPage.hero.eyebrow"), titleLine1: t("about.noteTrailerPage.hero.titleLine1"), titleLine2: t("about.noteTrailerPage.hero.titleLine2"), }, ]; return (

{t("about.notePPPage.title")}

); }