import React from 'react'; import { Link } from 'react-router-dom'; import { Building2, Mail, Phone, MapPin } from 'lucide-react'; const PublicFooter = () => { const footerLinks = { company: [ { name: 'About Us', href: '/about' }, { name: 'Our Addresses', href: '/addresses' }, { name: 'Blog', href: '/blog' }, { name: 'FAQ', href: '/faq' }, { name: 'Contact Us', href: '/contact' }, ], legal: [ { name: 'Terms of Service', href: '/terms' }, { name: 'Privacy Policy', href: '/privacy' }, { name: 'Refund Policy', href: '/refund' }, ], services: [ { name: 'Virtual Office', href: '/addresses' }, { name: 'Mail Forwarding', href: '/pricing' }, { name: 'Phone Services', href: '/pricing' }, { name: 'Business Setup', href: '/business-setup' }, ], }; return ( ); }; export default PublicFooter;