"use client"; import { motion } from "framer-motion"; import { ShieldCheck } from "lucide-react"; import { useTranslations } from "next-intl"; import { NormativeCard } from "./normativeCard"; const fadeUp = (delay = 0) => ({ initial: { opacity: 0, y: 36 }, animate: { opacity: 1, y: 0 }, transition: { duration: 0.65, ease: [0.22, 1, 0.36, 1] as any, delay }, }); const fadeUpView = (delay = 0) => ({ initial: { opacity: 0, y: 48 }, whileInView: { opacity: 1, y: 0 }, transition: { duration: 0.65, ease: [0.22, 1, 0.36, 1] as any, delay }, viewport: { once: true }, }); export default function NormativBazaPage() { const t = useTranslations(); return (
{/* ── Hero ── */}
{/* Content */}
{t("about.normativBaza.hero.label")} {t("about.normativBaza.hero.title1")}
{t("about.normativBaza.hero.title2")}
{t("about.normativBaza.hero.description")} {/* Decorative line */}
{/* ── Bottom quote band ── */}

{t("about.normativBaza.bottomText")}

); }