import Link from "next/link"; import Logo from "./Logo"; const FOOTER_LINKS = [ { label: "活动规则", href: "/rules" }, { label: "隐私协议", href: "/privacy" }, { label: "用户协议", href: "/terms" }, { label: "联系客服", href: "/support" }, ] as const; export default function Footer() { return ( ); }