// Footer.jsx — full sitemap footer function Footer({ navigate }) { const sections = [ { title: 'Rent with Santirma', links: [ ['Browse Properties', '/properties'], ['Neighborhoods', '/neighborhoods'], ['Apply Online', '/apply'], ['Resident Sign In', '/signin'], ['FAQ', '/faq'], ]}, { title: 'For Owners', links: [ ['Property Management', '/owners'], ['List Your Home', '/owners#list'], ['Owner Login', '/signin'], ['Investor Relations', '/owners#invest'], ['Market Reports', '/owners#reports'], ]}, { title: 'Company', links: [ ['About Santirma', '/about'], ['Contact', '/contact'], ['FAQ', '/faq'], ['Resident Sign In', '/signin'], ]}, { title: 'Legal', links: [ ['Terms & Conditions', '/terms'], ['Privacy Policy', '/privacy'], ['Fair Housing', '/terms#fair-housing'], ['Accessibility', '/terms#accessibility'], ['Cookie Preferences', '/privacy#cookies'], ]}, ]; return ( ); } window.SantirmaFooter = Footer;