'use client' import Link from 'next/link' import { motion } from 'framer-motion' import { Github, Mail, ArrowUpRight } from 'lucide-react' const footerLinks = [ { label: 'Projekte', href: '#projekte' }, { label: 'Über', href: '#ueber' }, { label: 'Fokus', href: '#fokus' }, { label: 'Philosophie', href: '#philosophie' }, ] const legalLinks = [ { label: 'Impressum', href: '/impressum' }, { label: 'Datenschutz', href: '/datenschutz' }, ] const socialLinks = [ { label: 'GitHub', href: 'https://github.com', icon: Github }, { label: 'E-Mail', href: 'mailto:kontakt@jamulix.de', icon: Mail }, ] export function Footer() { const currentYear = new Date().getFullYear() return ( ) }