Files
dream_pep 6cdc827a91 fix(download): 统一下载路由并更新全站相关链接
创建旧 /download 路径的重定向页面以兼容老链接
更新全站所有指向旧下载页的导航和内部链接
修复首页跑马灯的文字错别字(创绘基金→创汇基金)
调整启动器页面按钮布局与样式,添加下载图标
2026-09-05 20:19:54 +08:00

54 lines
1.2 KiB
TypeScript

"use client";
import dynamic from "next/dynamic";
const CardNav = dynamic(() => import("@/components/card-nav/CardNav"), {
ssr: false,
});
const navItems = [
{
label: "产品",
bgColor: "#1B1722",
textColor: "#fff",
links: [
{ label: "Koring Launcher", href: "/launcher", ariaLabel: "Koring Launcher" },
{ label: "下载中心", href: "/launcher/download", ariaLabel: "下载中心" },
{ label: "Sanshe Play", href: "https://docs.play.lenjing.work", ariaLabel: "Sanshe Play" },
],
},
{
label: "资源",
bgColor: "#2F293A",
textColor: "#fff",
links: [
{ label: "Github", href: "https://github.com/lingke-net", ariaLabel: "Github" },
{ label: "支持", href: "https://support.lingke.ink", ariaLabel: "支持" },
],
},
{
label: "关于",
bgColor: "#2F293A",
textColor: "#fff",
links: [
{ label: "MChine Space", href: "https://mchine.space", ariaLabel: "MChine Space" },
],
},
];
function Header() {
return (
<CardNav
logoAlt="Koring Team"
items={navItems}
baseColor="#ffffff"
menuColor="#000"
buttonBgColor="#111"
buttonTextColor="#fff"
ease="power3.out"
/>
);
}
export { Header };