import React from 'react'; export interface FooterLink { label: string; url: string; } interface FooterProps { storeName?: string; logoUrl?: string; tagline?: string; copyright?: string; links?: FooterLink[]; } const Footer: React.FC = ({ storeName = 'Stride', logoUrl, tagline = 'Performance in every stride.', copyright = '© 2026 Stride. All rights reserved.', links = [ { label: 'About', url: '#' }, { label: 'Athletes', url: '#' }, { label: 'Technology', url: '#' }, { label: 'Contact', url: '#' }, ], }) => { return ( ); }; export default Footer;