---
interface Props {
active?: string;
}
const { active = "" } = Astro.props;
const items = [
{ id: "home", href: "/", label: "首页" },
{ id: "roadmap", href: "/roadmap/", label: "学习地图" },
{ id: "k3", href: "/k3/", label: "K3 解剖" },
{ id: "deepseek", href: "/deepseek/", label: "DeepSeek" },
{ id: "foundations", href: "/foundations/language-models/", label: "基础原理" },
{ id: "scaling", href: "/scaling/", label: "Scaling" },
{ id: "data", href: "/pretraining/data/", label: "数据工程" },
{ id: "moe", href: "/moe/", label: "MoE" },
{ id: "long-context", href: "/long-context/", label: "长上下文" },
{ id: "reasoning", href: "/reasoning/", label: "推理" },
{ id: "training-systems", href: "/training-systems/", label: "训练系统" },
{ id: "numerics", href: "/systems/numerics/", label: "数值" },
{ id: "papers", href: "/papers/", label: "论文库" },
{ id: "progress", href: "/progress/", label: "进度" },
];
---