'use client'; import Link from 'next/link'; import Image from 'next/image'; const footerLinks = { services: { title: 'Services', links: [ { label: 'Neighborhood Guides', href: '#' }, { label: 'Home Loan & EMI Calculator', href: '#' }, ], }, serviceProviders: { title: 'Service Providers', links: [ { label: 'Agent', href: '/education' }, { label: 'Lenders', href: '#' }, ], }, resources: { title: 'Resources', links: [ { label: "Buyer's Guide", href: '#' }, { label: "Seller's Guide", href: '#' }, { label: 'FAQs', href: '/faq' }, { label: 'Blogs', href: '#' }, { label: 'Legal & Documentation Help', href: '#' }, ], }, aboutContact: { title: 'About & Contact', links: [ { label: 'About Our Agency', href: '/about' }, { label: 'Our Agents', href: '/education' }, { label: 'Testimonials', href: '/testimonials' }, { label: 'Careers', href: '#' }, { label: 'Contact Us', href: '/contact' }, { label: 'Privacy Policy', href: '#' }, { label: 'Terms & Conditions', href: '#' }, ], }, }; 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 ( ); }