import Link from 'next/link'; import { Mail, Phone, MapPin, Clock } from 'lucide-react'; const navigation = { services: [ { name: 'Public Accounting', href: '/services/public-accounting' }, { name: 'Federal Income Tax', href: '/services/federal-income-tax' }, { name: 'Estate Tax Planning', href: '/services/estate-tax-planning' }, { name: 'Financial Planning', href: '/services/financial-planning' }, { name: 'Advisory Services', href: '/services/advisory' }, ], company: [ { name: 'About', href: '/about' }, { name: 'Pricing', href: '/pricing' }, { name: 'Reviews', href: '/reviews' }, { name: 'Contact', href: '/contact' }, ], legal: [ { name: 'Privacy Policy', href: '/legal/privacy' }, { name: 'Terms of Service', href: '/legal/terms' }, ], }; export function SiteFooter() { return ( ); }