import { Github, Linkedin, Mail } from 'lucide-react'; import { useTranslation } from 'react-i18next'; import { rivusLogoSrc } from '../lib/logos'; import { NAV_SECTIONS } from '../lib/sections'; const SOCIALS = [ { Icon: Linkedin, href: 'https://www.linkedin.com', label: 'LinkedIn' }, { Icon: Github, href: 'https://github.com', label: 'GitHub' }, { Icon: Mail, href: 'mailto:contato@rivuslab.com', label: 'Email' }, ] as const; export function Footer({ isDark }: { isDark: boolean }) { const { t } = useTranslation(); const year = new Date().getFullYear(); return ( ); } function FooterColumn({ title, children, }: { title: string; children: React.ReactNode; }) { return (

{title}

); }