import Link from "next/link"; import { Facebook, Twitter, Linkedin, Phone, Mail, MapPin } from "lucide-react"; const navigation = { main: [ { name: "Home", href: "/" }, { name: "Services", href: "/services" }, { name: "Solutions", href: "/solutions" }, { name: "About", href: "/about" }, { name: "Contact", href: "/contact" }, ], social: [ { name: "Facebook", href: "https://www.facebook.com/quickbooks.easybutton", icon: Facebook, }, { name: "X", href: "https://x.com/Nicky_QB_Expert/", icon: Twitter, }, { name: "LinkedIn", href: "https://www.linkedin.com/in/nicollealcazar/", icon: Linkedin, }, ], }; export default function Footer() { return ( ); }