mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-04-24 03:00:09 -04:00
96 lines
2.3 KiB
JavaScript
96 lines
2.3 KiB
JavaScript
module.exports = {
|
|
title: "MetaGame Wiki",
|
|
tagline: "A collaborative guide for your journey into The MetaGame",
|
|
url: "https://wiki.metagame.wtf",
|
|
baseUrl: "/",
|
|
favicon: "img/mg-icon.png",
|
|
organizationName: "MetaFam",
|
|
projectName: "metagame-wiki",
|
|
themeConfig: {
|
|
navbar: {
|
|
title: "MetaGame Wiki",
|
|
logo: {
|
|
alt: "MetaGame Logo",
|
|
src: "img/mg-icon.png"
|
|
},
|
|
links: [
|
|
{ to: "docs/introduction", label: "📕 Handbook", position: "left" },
|
|
{
|
|
to: "docs/manifesto/pillar-articles",
|
|
label: "📜 Manifesto",
|
|
position: "left"
|
|
},
|
|
{ to: "docs/roadmap/phases", label: "🗺 Roadmap", position: "left" },
|
|
{
|
|
to: "docs/resources/graphics",
|
|
label: "🌳 Resources",
|
|
position: "left"
|
|
},
|
|
{
|
|
href: "https://metagame.wtf",
|
|
label: "Home",
|
|
position: "right"
|
|
}
|
|
]
|
|
},
|
|
footer: {
|
|
style: "dark",
|
|
links: [
|
|
{
|
|
title: "The Game",
|
|
items: [
|
|
{
|
|
label: "🌌 Interspace",
|
|
href: "https://interspace.metagame.wtf"
|
|
},
|
|
{
|
|
label: "🧬 The Source",
|
|
href: "https://metafam.github.io/TheSource/timeline/@metagame/"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
title: "Community",
|
|
items: [
|
|
{
|
|
label: "💬 Discord",
|
|
href: "https://discord.gg/VYZPBnx"
|
|
},
|
|
{
|
|
label: "🧵 Forums",
|
|
href: "https://forum.metagame.wtf"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
title: "Social",
|
|
items: [
|
|
{
|
|
label: "🐦 Twitter",
|
|
href: "https://twitter.com/MetaFam"
|
|
},
|
|
{
|
|
label: "🗞 Newsletter",
|
|
href: "https://metagame.substack.com"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
},
|
|
presets: [
|
|
[
|
|
"@docusaurus/preset-classic",
|
|
{
|
|
docs: {
|
|
sidebarPath: require.resolve("./sidebars.js"),
|
|
editUrl: "https://github.com/MetaFam/metagame-wiki/edit/master/"
|
|
},
|
|
theme: {
|
|
customCss: require.resolve("./src/css/custom.css")
|
|
}
|
|
}
|
|
]
|
|
]
|
|
};
|