import { Link } from "react-router"; const FOOTER_LINKS = [ { label: "Home", to: "/" }, { label: "Rules", to: "/rules" }, { label: "How to Play", to: "/how-to-play" }, { label: "Sports", to: "/sports" }, { label: "Support", to: "/support" }, { label: "Privacy Policy", to: "/privacy-policy" }, ]; export function Footer() { return ( ); }