2024-09-03 23:56:15 -05:00
|
|
|
export const allFolders: (DocsFolder | Docs)[] = [
|
2024-09-08 22:34:51 -05:00
|
|
|
{
|
|
|
|
|
title: "Getting Started",
|
|
|
|
|
url: "/docs/getting-started",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "Reading",
|
|
|
|
|
url: "/docs/reading",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Guides",
|
|
|
|
|
docs: [
|
|
|
|
|
{
|
|
|
|
|
title: "Linking",
|
|
|
|
|
url: "/docs/guides/linking",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "Owning a Server",
|
|
|
|
|
url: "/docs/guides/owning-a-server",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "Server Customization",
|
|
|
|
|
url: "/docs/guides/customization",
|
|
|
|
|
},
|
|
|
|
|
{ title: "Reporting a server", url: "/docs/guides/reporting-server" },
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Advanced",
|
|
|
|
|
docs: [
|
|
|
|
|
{ title: "Tech Stack", url: "/docs/advanced/tech-stack" },
|
|
|
|
|
{ title: "Using the Command-bar", url: "/docs/advanced/command-bar" },
|
|
|
|
|
{ title: "Tips with external servers", url: "/docs/advanced/external" },
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Legal",
|
|
|
|
|
docs: [
|
|
|
|
|
{ title: "ECA Agreement", url: "/docs/legal/external-content-agreement" },
|
|
|
|
|
],
|
|
|
|
|
},
|
2024-09-03 23:56:15 -05:00
|
|
|
];
|
|
|
|
|
|
|
|
|
|
export type Docs = {
|
2024-09-08 22:34:51 -05:00
|
|
|
title: string;
|
|
|
|
|
url: string;
|
2024-09-03 23:56:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type DocsFolder = {
|
2024-09-08 22:34:51 -05:00
|
|
|
name: string;
|
|
|
|
|
docs: Array<Docs>;
|
2024-09-03 23:56:15 -05:00
|
|
|
};
|