import Link from "next/link"; import { GITEE_ENABLED, type Locale } from "@/lib/i18n/config"; import { Seal } from "./seal"; const EN_COLS = [ { title: "Product", cn: "产品", items: [ { label: "Install", href: "/install" }, { label: "Documentation", href: "/docs" }, { label: "Roadmap", href: "/roadmap" }, { label: "FAQ", href: "/faq" }, { label: "Releases", href: "https://github.com/Hmbown/CodeWhale/releases" }, ], }, { title: "Community", cn: "社区", items: [ { label: "Issues", href: "https://github.com/Hmbown/CodeWhale/issues" }, { label: "Pull Requests", href: "https://github.com/Hmbown/CodeWhale/pulls" }, { label: "Discussions", href: "https://github.com/Hmbown/CodeWhale/discussions" }, { label: "Contribute", href: "/contribute" }, { label: "Sponsor CodeWhale", href: "https://github.com/sponsors/Hmbown" }, ], }, { title: "Resources", cn: "资源", items: [ { label: "Activity Feed", href: "/feed" }, { label: "Code of Conduct", href: "https://github.com/Hmbown/CodeWhale/blob/main/CODE_OF_CONDUCT.md" }, { label: "Security", href: "https://github.com/Hmbown/CodeWhale/blob/main/SECURITY.md" }, { label: "License (MIT)", href: "https://github.com/Hmbown/CodeWhale/blob/main/LICENSE" }, ], }, ]; const ZH_COLS = [ { title: "产品", items: [ { label: "安装指南", href: "/zh/install" }, { label: "使用文档", href: "/zh/docs" }, { label: "路线图", href: "/zh/roadmap" }, { label: "常见问题", href: "/zh/faq" }, { label: "版本发布", href: "https://github.com/Hmbown/CodeWhale/releases" }, ], }, { title: "社区", items: [ { label: "议题", href: "https://github.com/Hmbown/CodeWhale/issues" }, { label: "合并请求", href: "https://github.com/Hmbown/CodeWhale/pulls" }, { label: "讨论区", href: "https://github.com/Hmbown/CodeWhale/discussions" }, { label: "参与贡献", href: "/zh/contribute" }, { label: "支持 CodeWhale", href: "https://github.com/sponsors/Hmbown" }, ], }, { title: "资源", items: [ { label: "活动动态", href: "/zh/feed" }, { label: "行为准则", href: "https://github.com/Hmbown/CodeWhale/blob/main/CODE_OF_CONDUCT.md" }, { label: "安全策略", href: "https://github.com/Hmbown/CodeWhale/blob/main/SECURITY.md" }, { label: "MIT 许可证", href: "https://github.com/Hmbown/CodeWhale/blob/main/LICENSE" }, ], }, ]; export function Footer({ locale = "en" }: { locale?: Locale }) { const isZh = locale === "zh"; const cols = isZh ? ZH_COLS : EN_COLS; return ( ); }