import Link from "next/link"; import { getAllPages } from "@/lib/wiki"; import { Sidebar } from "@/components/Sidebar"; export default async function Home() { const pages = await getAllPages(); const indexPage = pages.find(p => p.slug === "INDEX"); return (
{/* Header */}
WikiLLM
{/* Sidebar */} {/* Main content */}
{indexPage ? (
) : (

欢迎来到 WikiLLM 知识库

请从侧边栏选择一个页面开始浏览。

)}
); }