mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-24 07:51:52 +08:00
feat: support fumadocs
This commit is contained in:
@@ -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[],
|
||||
};
|
||||
Reference in New Issue
Block a user