first commit

This commit is contained in:
2026-02-28 23:01:30 +08:00
commit 3956ee4806
415 changed files with 74538 additions and 0 deletions

19
app/docs/layout.tsx Normal file
View File

@@ -0,0 +1,19 @@
import { Sidebar } from "../../components/Sidebar";
import { getSidebarStructure } from "../../lib/docs";
export default function DocsLayout({
children,
}: {
children: React.ReactNode;
}) {
const sidebarData = getSidebarStructure();
return (
<>
<Sidebar sidebarData={sidebarData} />
<main className="doc-main">
{children}
</main>
</>
);
}