Feat : Gitbook

This commit is contained in:
decolua
2026-05-11 11:50:24 +07:00
parent 7ad538bcf2
commit fd92af77a0
124 changed files with 34154 additions and 4 deletions
+13
View File
@@ -0,0 +1,13 @@
"use client";
import { MarkdownRenderer } from "@/utils/markdown";
export default function DocsContent({ content }) {
return (
<main className="flex-1 overflow-y-auto">
<article className="max-w-4xl mx-auto px-6 py-8">
<MarkdownRenderer content={content} />
</article>
</main>
);
}