mirror of
https://github.com/DeveloLongScript/MHSF.git
synced 2026-05-07 16:44:59 -05:00
fix: remove legacy email-list
This commit is contained in:
parent
9cfec8deca
commit
b144bafd03
@ -29,61 +29,60 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
export const allFolders: DocsFolder[] = [
|
export const allFolders: DocsFolder[] = [
|
||||||
{
|
{
|
||||||
name: "General",
|
name: "General",
|
||||||
docs: [
|
docs: [
|
||||||
{
|
{
|
||||||
title: "Getting Started",
|
title: "Getting Started",
|
||||||
url: "/docs/getting-started",
|
url: "/docs/getting-started",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Reading",
|
title: "Reading",
|
||||||
url: "/docs/reading",
|
url: "/docs/reading",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Guides",
|
name: "Guides",
|
||||||
docs: [
|
docs: [
|
||||||
{
|
{
|
||||||
title: "Linking",
|
title: "Linking",
|
||||||
url: "/docs/guides/linking",
|
url: "/docs/guides/linking",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Owning a Server",
|
title: "Owning a Server",
|
||||||
url: "/docs/guides/owning-a-server",
|
url: "/docs/guides/owning-a-server",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Server Customization",
|
title: "Server Customization",
|
||||||
url: "/docs/guides/customization",
|
url: "/docs/guides/customization",
|
||||||
},
|
},
|
||||||
{ title: "Reporting a server", url: "/docs/guides/reporting-server" },
|
{ title: "Reporting a server", url: "/docs/guides/reporting-server" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Advanced",
|
name: "Advanced",
|
||||||
docs: [
|
docs: [
|
||||||
{ title: "Tech Stack", url: "/docs/advanced/tech-stack" },
|
{ title: "Tech Stack", url: "/docs/advanced/tech-stack" },
|
||||||
{ title: "Using the Command-bar", url: "/docs/advanced/command-bar" },
|
{ title: "Using the Command-bar", url: "/docs/advanced/command-bar" },
|
||||||
{ title: "Tips with external servers", url: "/docs/advanced/external" },
|
{ title: "Tips with external servers", url: "/docs/advanced/external" },
|
||||||
{ title: "Achievements", url: "/docs/advanced/achievements" },
|
{ title: "Achievements", url: "/docs/advanced/achievements" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Legal",
|
name: "Legal",
|
||||||
docs: [
|
docs: [
|
||||||
{ title: "ECA Agreement", url: "/docs/legal/external-content-agreement" },
|
{ title: "ECA Agreement", url: "/docs/legal/external-content-agreement" },
|
||||||
{ title: "Email List", url: "/docs/legal/email-list" },
|
],
|
||||||
],
|
},
|
||||||
},
|
|
||||||
];
|
];
|
||||||
|
|
||||||
export type Docs = {
|
export type Docs = {
|
||||||
title: string;
|
title: string;
|
||||||
url: string;
|
url: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type DocsFolder = {
|
export type DocsFolder = {
|
||||||
name: string;
|
name: string;
|
||||||
docs: Array<Docs>;
|
docs: Array<Docs>;
|
||||||
};
|
};
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user