website/docs/config.ts

53 lines
979 B
TypeScript
Raw Normal View History

export interface Docs {
sidebar: Sidebar[];
}
export interface SidebarItem {
text: string;
link: string;
}
export interface Sidebar {
text: string;
items: SidebarItem[];
}
export const docs: Docs = {
sidebar: [
{
text: "Discord Tools API",
items: [
{
text: "Introduction",
link: "/docs/distools-api/introduction",
},
{
text: "Experiments",
link: "/docs/distools-api/experiments",
},
{
text: "Eligible",
link: "/docs/distools-api/eligible",
},
{
text: "Stats",
link: "/docs/distools-api/stats",
},
],
},
{
text: "Peddler's Pocket",
items: [
{
text: "Introduction",
link: "/docs/peddlerspocket/introduction",
},
{
text: "Configuration",
link: "/docs/peddlerspocket/configuration",
},
],
},
],
};