import React from 'react'; import { Link } from 'react-router-dom'; import { FOOTER_LINKS } from '../constants'; const DISABLED_FOOTER_LINKS = new Set([ 'Best Sellers', 'Gift Cards', 'Sustainability', 'Careers', 'Press', ]); const Footer: React.FC = () => { const renderFooterLink = (link: { label: string; href: string }) => { const baseClassName = 'text-lg font-light transition-all duration-300 block'; if (DISABLED_FOOTER_LINKS.has(link.label)) { return ( {link.label} ); } return ( {link.label} ); }; return ( ); }; export default Footer;