import React from 'react'; import { Link } from '@tanstack/react-router'; interface FooterLink { label: string; href: string; } interface FooterProps { links?: FooterLink[]; copyright?: string; } const Footer = ({ links = [], copyright = 'EmberClone 2026' }: FooterProps) => { return ( ); }; export default Footer;