"use client"; import { useState, useEffect } 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 } from "next-intl"; import { useConsent } from "./ConsentProvider"; const Footer = () => { const [currentYear, setCurrentYear] = useState(2024); const locale = useLocale(); const { resetConsent } = useConsent(); useEffect(() => { setCurrentYear(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;