import { Link } from 'react-router-dom'; import { MapPin, Phone, Mail } from 'lucide-react'; const Footer = () => { const quickLinks = [ { name: 'Services', path: '/services' }, { name: 'About', path: '/about' }, { name: 'Blog', path: '/blog' }, { name: 'Contact', path: '/contact' }, ]; const services = [ 'Hardware & Desktop Support', 'Network Infrastructure', 'Virtualization & Cloud', 'Secure Remote Access', 'Backup & Continuity', 'Microsoft 365', ]; return ( ); }; export default Footer;