"use client"; import { useState } from 'react'; import { motion } from 'framer-motion'; import { Heart, Code } from 'lucide-react'; import { SiGithub, SiLinkedin } from 'react-icons/si'; import Link from 'next/link'; import { useLocale, useTranslations } from "next-intl"; import { useConsent } from "./ConsentProvider"; const Footer = () => { const locale = useLocale(); const t = useTranslations("footer"); const { resetConsent } = useConsent(); const [currentYear] = useState(() => new Date().getFullYear()); const socialLinks = [ { icon: SiGithub, href: 'https://github.com/Denshooter', label: 'GitHub' }, { icon: SiLinkedin, href: 'https://linkedin.com/in/dkonkol', label: 'LinkedIn' } ]; return ( ); }; export default Footer;