refactor: Update footer link hrefs, using '#' as placeholders for most and '/education' for agent-related links.

This commit is contained in:
pradeepkumar
2026-03-15 20:27:15 +05:30
parent 9638c6c4c9
commit 63ad223c4c

View File

@@ -7,37 +7,37 @@ const footerLinks = {
services: {
title: 'Services',
links: [
{ label: 'Neighborhood Guides', href: '/neighborhood-guides' },
{ label: 'Home Loan & EMI Calculator', href: '/calculator' },
{ label: 'Neighborhood Guides', href: '#' },
{ label: 'Home Loan & EMI Calculator', href: '#' },
],
},
serviceProviders: {
title: 'Service Providers',
links: [
{ label: 'Agent', href: '/agents' },
{ label: 'Lenders', href: '/lenders' },
{ label: 'Agent', href: '/education' },
{ label: 'Lenders', href: '#' },
],
},
resources: {
title: 'Resources',
links: [
{ label: "Buyer's Guide", href: '/buyers-guide' },
{ label: "Seller's Guide", href: '/sellers-guide' },
{ label: "Buyer's Guide", href: '#' },
{ label: "Seller's Guide", href: '#' },
{ label: 'FAQs', href: '/faq' },
{ label: 'Blogs', href: '/blogs' },
{ label: 'Legal & Documentation Help', href: '/legal-help' },
{ label: 'Blogs', href: '#' },
{ label: 'Legal & Documentation Help', href: '#' },
],
},
aboutContact: {
title: 'About & Contact',
links: [
{ label: 'About Our Agency', href: '/about' },
{ label: 'Our Agents', href: '/agents' },
{ label: 'Our Agents', href: '/education' },
{ label: 'Testimonials', href: '/testimonials' },
{ label: 'Careers', href: '/careers' },
{ label: 'Careers', href: '#' },
{ label: 'Contact Us', href: '/contact' },
{ label: 'Privacy Policy', href: '/privacy-policy' },
{ label: 'Terms & Conditions', href: '/terms' },
{ label: 'Privacy Policy', href: '#' },
{ label: 'Terms & Conditions', href: '#' },
],
},
};