import { Glasses, Mail, Phone, MapPin, Instagram, Twitter, Youtube, Linkedin } from 'lucide-react'; import { Button } from '@/components/ui/button'; const quickLinks = [ { label: 'Sobre', href: '#sobre' }, { label: 'Tecnologia', href: '#tecnologia' }, { label: 'Design', href: '#design' }, { label: 'Funcionalidades', href: '#funcionalidades' }, { label: 'Especificações', href: '#especificacoes' }, ]; const contactInfo = [ { icon: Mail, label: 'contacto@visionrun.pt' }, { icon: Phone, label: '+351 210 000 000' }, { icon: MapPin, label: 'Lisboa, Portugal' }, ]; const socialLinks = [ { icon: Instagram, href: '#', label: 'Instagram' }, { icon: Twitter, href: '#', label: 'Twitter' }, { icon: Youtube, href: '#', label: 'YouTube' }, { icon: Linkedin, href: '#', label: 'LinkedIn' }, ]; export function Footer() { const scrollToSection = (href: string) => { if (href === '#') return; const element = document.querySelector(href); if (element) { element.scrollIntoView({ behavior: 'smooth' }); } }; return ( ); }