import { motion } from 'framer-motion' import { useTranslation } from 'react-i18next' import { ShieldCheck, Database, Globe } from 'lucide-react' export default function Credentials() { const { t } = useTranslation() return (
{/* Left Side: Title Block */}

{t('credentials.title')}

{t('credentials.subtitle')}

My work is built on a foundation of verified certifications and strict adherence to data privacy protocols.

{/* Right Side: Data Dossier Grid */}
{[ { title: t('credentials.section_1'), items: [t('credentials.item_1'), t('credentials.item_2'), t('credentials.item_5')], icon: Database }, { title: t('credentials.section_2'), items: [t('credentials.item_3'), t('credentials.item_6')], icon: Globe }, { title: t('credentials.section_3'), items: [t('credentials.item_4')], icon: ShieldCheck }, ].map((col, idx) => (

{col.title}

    {col.items.map((item, i) => (
  • {item}
  • ))}
))}
) }