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