'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' }, ] export function Footer({ email }: { email?: string }) { const socialLinks = [ { label: 'Forgejo', href: 'https://kitux.de/forgejo/dschlueter/jamulix-homepage', icon: Github }, { label: 'E-Mail', href: `mailto:${email ?? '[Emailadresse]'}`, icon: Mail }, ] const currentYear = new Date().getFullYear() return ( ) }