"use client"; import { Card, CardContent } from "@/components/ui/card"; import { Reveal } from "@/components/landing-page/Reveal"; import { Separator } from "@/components/ui/separator"; import Image from "next/image"; import { useTranslations } from "next-intl"; export default function AboutPage() { const t = useTranslations("AboutPage"); return (
{/* Header Section */}

{t("title")}

{t("subtitle")}

{/* Deskripsi Umum */}

{t("whatIs.title")}

{t.rich("whatIs.p1", { b: (chunks) => {chunks}, })}

{t("whatIs.p2")}

{/* Fungsi Utama */}

{t("functions.title")}

  • {t("functions.f1")}
  • {t("functions.f2")}
  • {t("functions.f3")}
  • {t("functions.f4")}
{/* Cara Kerja */}

{t("howItWorks.title")}

  1. {t("howItWorks.s1")}
  2. {t("howItWorks.s2")}
  3. {t("howItWorks.s3")}
  4. {t("howItWorks.s4")}
{/* Ilustrasi */}
{t("title")}
{/* Visi & Misi */}

{t("vision.title")}

{t("vision.text")}

{t("mission.title")}

  • {t("mission.m1")}
  • {t("mission.m2")}
  • {t("mission.m3")}
); }