"use client" import Header from '@/components/Header' import Footer from '@/components/Footer' import Button from '@/components/objects/Button' import Link from '@/components/objects/Link' import LastPlayed from '@/components/widgets/LastPlayed' import Image from 'next/image' import { CreditCard, Mail, PillBottle, Scale } from 'lucide-react' import { FaHandcuffs } from "react-icons/fa6" import { useTranslation } from 'react-i18next' import { SiGithubsponsors } from 'react-icons/si' export default function Home() { const { t } = useTranslation() const mainStrings: string[][] = [ t('home.whoAmI', { returnObjects: true }) as string[], t('home.whatIDo', { returnObjects: true }) as string[], t('home.whereYouAre', { returnObjects: true }) as string[] ] const mainSections = [ t('home.sections.whoIAm'), t('home.sections.whatIDo'), t('home.sections.whereYouAre') ] return (
My Profile Picture

{t('home.profile.name')}

{t('home.profile.description')}

{mainSections.map((section, secIndex) => (

{section}

{mainStrings[secIndex].map((text: string, index: number) => (

{text} {secIndex === 2 && index === 1 && ( <> CVE-2025-29927 . )}

))}
))}

{t('home.contact.title')}

{t('home.contact.description')}

{t('home.donation.title')}

{t('home.donation.description')}

{t('home.donation.charities.title')}

{t('home.donation.donate.title')}

); }