'use client' import Link from 'next/link' import { Mail, Github, Twitter } from 'lucide-react' interface FooterProps { year?: number } export default function Footer({ year = new Date().getFullYear() }: FooterProps) { return ( ) }