import { Separator } from '@/components/ui/separator'; import { Github, Mail } from 'lucide-react'; import Link from 'next/link'; const FOOTER_MENU_ITEMS = [ { name: 'About', path: '#about' }, { name: 'Skills', path: '#skills' }, { name: 'Projects', path: '#projects' }, { name: 'Monitoring', path: '#monitoring' }, { name: 'Contact', path: '#contact' }, ]; const SOCIAL_MEDIA = [ { name: "GitHub", icon: Github, href: "https://github.com", }, { name: "Email", icon: Mail, href: "mailto:hello@example.com", }, ]; const Footer = () => { const currentYear = new Date().getFullYear(); return ( ); } export default Footer;