feat: support fumadocs

This commit is contained in:
ReaJason
2025-12-05 11:07:24 +08:00
parent 38ad19c7ea
commit 69910ec187
140 changed files with 4788 additions and 1438 deletions
+36
View File
@@ -0,0 +1,36 @@
import type { LinkItemType } from "fumadocs-ui/layouts/shared";
import { LanguageSwitcher } from "@/components/language-switcher";
export const siteConfig = {
name: "MemShellParty",
url: "https://party.memshell.news",
github: "https://github.com/ReaJason/MemShellParty",
latestRelease: "https://github.com/ReaJason/MemShellParty/releases/latest",
author: "ReaJason",
authorGithub: "https://github.com/ReaJason",
authorIntro: "Java RASP Developer",
blog: "https://reajason.eu.org",
navLinks: [
{
text: "MemShellGenerator",
url: "/memshell",
},
{
text: "ProbeShellGenerator",
url: "/probeshell",
},
{
text: "Documents",
url: "/docs",
},
{
text: "About",
url: "/about",
},
{
type: "custom",
children: <LanguageSwitcher />,
secondary: true,
},
] as LinkItemType[],
};