'use client'; import Link from 'next/link'; import Image from 'next/image'; const footerLinks = { services: { title: 'Services', links: [ { label: 'Neighborhood Guides', href: '/neighborhood-guides' }, { label: 'Home Loan & EMI Calculator', href: '/calculator' }, ], }, serviceProviders: { title: 'Service Providers', links: [ { label: 'Agent', href: '/agents' }, { label: 'Lenders', href: '/lenders' }, ], }, resources: { title: 'Resources', links: [ { label: "Buyer's Guide", href: '/buyers-guide' }, { label: "Seller's Guide", href: '/sellers-guide' }, { label: 'FAQs', href: '/faq' }, { label: 'Blogs', href: '/blogs' }, { label: 'Legal & Documentation Help', href: '/legal-help' }, ], }, aboutContact: { title: 'About & Contact', links: [ { label: 'About Our Agency', href: '/about' }, { label: 'Our Agents', href: '/agents' }, { label: 'Testimonials', href: '/testimonials' }, { label: 'Careers', href: '/careers' }, { label: 'Contact Us', href: '/contact' }, { label: 'Privacy Policy', href: '/privacy-policy' }, { label: 'Terms & Conditions', href: '/terms' }, ], }, }; const socialLinks = [ { name: 'LinkedIn', href: '#', icon: ( ), bgColor: 'bg-[#0077b5]', }, { name: 'Instagram', href: '#', icon: ( ), bgColor: 'bg-gradient-to-br from-[#f09433] via-[#e6683c] to-[#bc1888]', }, { name: 'Facebook', href: '#', icon: ( ), bgColor: 'bg-[#1877f2]', }, { name: 'Twitter', href: '#', icon: ( ), bgColor: 'bg-[#1da1f2]', }, ]; export function Footer() { return ( ); }