"use client"; import { motion } from "framer-motion"; import { useTranslations } from "next-intl"; import { Award } from "lucide-react"; import { normativeData } from "@/lib/demoData"; export function NormativeCard() { const t = useTranslations(); return (
{normativeData.map((c, i) => ( {/* Meta + actions */}
{/* Badge row */}
{t("about.certificatePage.card.badge")}
{c.category}
{/* Title */}

{t(c.titleKey)}

{/* Divider */}
{/* Documents list */}
    {c.documents.map((doc, di) => (
  • {t(doc)}

  • ))}
))}
); }