Every translatable text is now in US_en.json

Every translatable word/sentence now refers to its file in /locales. This means that translations are now easier to make (you just need to create a REGIONCODE_languagecode.json in locales with the translated .json)
This commit is contained in:
Montelion
2020-04-22 22:23:05 +02:00
committed by GitHub
parent bb4e21bcfe
commit a231538872
8 changed files with 342 additions and 309 deletions

View File

@@ -1,23 +1,60 @@
{
"nav": {
"brand": "Pretendo"
},
"home": {
"header": {
"title": "Pretendo",
"text": "An open source Nintendo Network replacement service"
}
},
"about": {
"caption": "What is this?",
"title": "About",
"text": "Pretendo is an open source Nintendo Network replacement that aims to build custom servers for the WiiU and 3DS family of consoles. Our goal is to preserve the online functionality of these consoles, to allow players to continue to play their favorite WiiU and 3DS games to their fullest capacity."
},
"credits": {
"caption": "The people responsible",
"title": "Credits"
},
"footer": {
"text": "Copyright 2020 PretendoNetwork - Site designed and developed by mrjvs, ben and jip"
}
{
"nav": {
"brand": "Pretendo"
},
"home": {
"header": {
"title": "Pretendo",
"text": "An open source Nintendo Network replacement service"
}
},
"about": {
"caption": "What is this?",
"title": "About",
"text": "Pretendo is an open source Nintendo Network replacement that aims to build custom servers for the WiiU and 3DS family of consoles. Our goal is to preserve the online functionality of these consoles, to allow players to continue to play their favorite WiiU and 3DS games to their fullest capacity."
},
"credits": {
"caption": "The people responsible",
"title": "Credits",
"redducks": "Project owner and lead developer",
"caramelkat": "Miiverse research and development",
"superwhiskers": "crunch library development",
"supermariodabom": "Console and other system research",
"rambo6glaz": "Network installer and console research",
"mrjvs": "Web development and early eShop research",
"kxpler442b": "Web development",
"jipfr": "Web development",
"kinnay": "None of this would be possible without the research and help done by Kinnay on PRUDP and nex"
},
"footer": {
"text": "Copyright 2020 PretendoNetwork - Site designed and developed by mrjvs, ben and jip"
},
"connecting": {
"title": "Connecting",
"text": "Pretendo is currently not usable by the general public. When the network becomes public, this will contain steps on connecting to the network"
},
"cemu": {
"title": "Cemu",
"text": "Pretendo is currently not usable by the general public. When the network becomes public, this will contain steps on connecting to the network using Cemu"
},
"faq": {
"title": "FAQ"
"q1": "What is Pretendo?",
"a1": "Pretendo is an open source Nintendo Network replacement that aims to build custom servers for the WiiU and 3DS family of consoles. Our goal is to preserve the online functionality of these consoles, to allow players to continue to play their favorite WiiU and 3DS games to their fullest capacity",
"q2": "How do I use Pretendo?",
"a2": "Pretendo is currently not in a state that is ready for public use. However, once it is you will be able to use Pretendo simply by running our homebrew patcher on your console",
"q3": "Is there an ETA for XYZ?",
"a3": "We do not have an exact ETA for any specific features or the project as a whole. There are many parts to the network, updates release for them individually whenever they are ready (for example updates to the account server are (almost always) independent on other parts of the network, such as the friends server). Due to that we cannot give an exact ETA",
"q4": "Does Pretendo work on Cemu/emulators?",
"a4": "Pretendo is designed for the WiiU and (eventually) 3DS. At this time the only emulator for these consoles with real online capability is Cemu. Cemu does not officially support custom servers, but it will still be possible to use Pretendo with Cemu
<br>
See the <a href="/cemu">Cemu</a> page for more details",
"q5": "Will my existing NNIDs work on Pretendo?",
"a5": "Sadly, no. The only ones with access to the data about your existing NNIDs is Nintendo. A NNID-to-PNID migration could theoretically be possible, but it would be a slow and lengthy process requiring sensitive user information",
"q6": "If I am account/console banned on Nintendo Network, will I stay banned when using Pretendo?",
"a6": "Any account/console bans only exist server-side. This means any existing bans would not carry over to Pretendo. However Pretendo still reserves the right to issue a ban for our network if we see fit",
"q7": "Will Pretendo support the Wii/Switch?",
"a7": "The Wii already has custom servers provided by <a href="https://wiimmfi.de/" target="_blank">Wiimmfi</a>. We currently have no plans on supporting the Switch, as not only is it a completely different platform with a different online network, but Switch online is a paid service"
}
}

View File

@@ -1,23 +1,23 @@
{
"nav": {
"brand": "ERROR"
},
"home": {
"header": {
"title": "ERROR",
"text": "ERROR"
}
},
"about": {
"caption": "ERROR",
"title": "ERROR",
"text": "ERROR"
},
"credits": {
"caption": "ERROR",
"title": "ERROR"
},
"footer": {
"text": "ERROR"
}
{
"nav": {
"brand": "ERROR"
},
"home": {
"header": {
"title": "ERROR",
"text": "ERROR"
}
},
"about": {
"caption": "ERROR",
"title": "ERROR",
"text": "ERROR"
},
"credits": {
"caption": "ERROR",
"title": "ERROR"
},
"footer": {
"text": "ERROR"
}
}

View File

@@ -1,22 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
{{> head-common }}
<!-- page specific -->
<link rel="stylesheet" href="/assets/css/pretendo-contact.css">
</head>
<body class="flex">
{{> navbar }}
<div class="contentWrapper bgLinesSmall">
<div class="bgExtrude"></div>
<section class="bigCardWrapper">
<div class="bigCard">
<p class="txt-highlight">404</p>
<h1 class="txt-title">{{ locale.404.title }}</h1>
</div>
</section>
</div>
{{> footer-default }}
</body>
<!DOCTYPE html>
<html lang="en">
<head>
{{> head-common }}
<!-- page specific -->
<link rel="stylesheet" href="/assets/css/pretendo-contact.css">
</head>
<body class="flex">
{{> navbar }}
<div class="contentWrapper bgLinesSmall">
<div class="bgExtrude"></div>
<section class="bigCardWrapper">
<div class="bigCard">
<p class="txt-highlight">404</p>
<h1 class="txt-title">{{ locale.404.title }}</h1>
</div>
</section>
</div>
{{> footer-default }}
</body>
</html>

View File

@@ -1,21 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
{{> head-common }}
</head>
<body class="flex">
{{> navbar }}
<div class="contentWrapper bgLinesSmall">
<div class="bgExtrude"></div>
<section class="bigCardWrapper">
<div class="bigCard">
<h1 class="txt-title">Cemu</h1>
<h2>Pretendo is currently not usable by the general public. When the network becomes public, this will contain steps on connecting to the network using Cemu</h2>
</div>
</section>
</div>
{{> footer-default }}
</body>
<!DOCTYPE html>
<html lang="en">
<head>
{{> head-common }}
</head>
<body class="flex">
{{> navbar }}
<div class="contentWrapper bgLinesSmall">
<div class="bgExtrude"></div>
<section class="bigCardWrapper">
<div class="bigCard">
<h1 class="txt-title">{{ locale.cemu.title }}</h1>
<h2>{{ locale.connecting.text }}</h2>
</div>
</section>
</div>
{{> footer-default }}
</body>
</html>

View File

@@ -1,21 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
{{> head-common }}
</head>
<body class="flex">
{{> navbar }}
<div class="contentWrapper bgLinesSmall">
<div class="bgExtrude"></div>
<section class="bigCardWrapper">
<div class="bigCard">
<h1 class="txt-title">Connecting</h1>
<h2>Pretendo is currently not usable by the general public. When the network becomes public, this will contain steps on connecting to the network</h2>
</div>
</section>
</div>
{{> footer-default }}
</body>
<!DOCTYPE html>
<html lang="en">
<head>
{{> head-common }}
</head>
<body class="flex">
{{> navbar }}
<div class="contentWrapper bgLinesSmall">
<div class="bgExtrude"></div>
<section class="bigCardWrapper">
<div class="bigCard">
<h1 class="txt-title">{{ locale.connecting.title }}</h1>
<h2>{{ locale.connecting.text }}</h2>
</div>
</section>
</div>
{{> footer-default }}
</body>
</html>

View File

@@ -1,62 +1,58 @@
<!DOCTYPE html>
<html lang="en">
<head>
{{> head-common }}
<!-- page specific -->
<link rel="stylesheet" href="/assets/css/pretendo-faq.css">
</head>
<body class="flex">
{{> navbar }}
<div class="contentWrapper bgLinesSmall">
<div class="bgExtrude"></div>
<section class="bigCardWrapper">
<div class="bigCard">
<h1 class="txt-title">FAQ</h1>
<div class="faqs">
<details>
<summary>What is Pretendo?</summary>
<p class="text">Pretendo is an open source Nintendo Network replacement that aims to build custom servers for the WiiU and 3DS family of consoles. Our goal is to preserve the online functionality of these consoles, to allow players to continue to play their favorite WiiU and 3DS games to their fullest capacity</p>
</details>
<details>
<summary>How do I use Pretendo?</summary>
<p class="text">Pretendo is currently not in a state that is ready for public use. However, once it is you will be able to use Pretendo simply by running our homebrew patcher on your console</p>
</details>
<details>
<summary>Is there an ETA for XYZ?</summary>
<p class="text">We do not have an exact ETA for any specific features or the project as a whole. There are many parts to the network, updates release for them individually whenever they are ready (for example updates to the account server are (almost always) independent on other parts of the network, such as the friends server). Due to that we cannot give an exact ETA</p>
</details>
<details>
<summary>Does Pretendo work on Cemu/emulators?</summary>
<p class="text">
Pretendo is designed for the WiiU and (eventually) 3DS. At this time the only emulator for these consoles with real online capability is Cemu. Cemu does not officially support custom servers, but it will still be possible to use Pretendo with Cemu
<br>
See the <a href="/cemu">Cemu</a> page for more details
</p>
</details>
<details>
<summary>Will my existing NNIDs work on Pretendo?</summary>
<p class="text">Sadly, no. The only ones with access to the data about your existing NNIDs is Nintendo. A NNID-to-PNID migration could theoretically be possible, but it would be a slow and lengthy process requiring sensitive user information</p>
</details>
<details>
<summary>If I am account/console banned on Nintendo Network, will I stay banned when using Pretendo?</summary>
<p class="text">Any account/console bans only exist server-side. This means any existing bans would not carry over to Pretendo. However Pretendo still reserves the right to issue a ban for our network if we see fit</p>
</details>
<details>
<summary>Will Pretendo support the Wii/Switch?</summary>
<p class="text">The Wii already has custom servers provided by <a href="https://wiimmfi.de/" target="_blank">Wiimmfi</a>. We currently have no plans on supporting the Switch, as not only is it a completely different platform with a different online network, but Switch online is a paid service</p>
</details>
</div>
</div>
</section>
</div>
{{> footer-default }}
</body>
<!DOCTYPE html>
<html lang="en">
<head>
{{> head-common }}
<!-- page specific -->
<link rel="stylesheet" href="/assets/css/pretendo-faq.css">
</head>
<body class="flex">
{{> navbar }}
<div class="contentWrapper bgLinesSmall">
<div class="bgExtrude"></div>
<section class="bigCardWrapper">
<div class="bigCard">
<h1 class="txt-title">{{ locale.faq.title }}</h1>
<div class="faqs">
<details>
<summary>{{ locale.faq.q1 }}</summary>
<p class="text">{{ locale.faq.a1 }}</p>
</details>
<details>
<summary>{{ locale.faq.q2 }}</summary>
<p class="text">{{ locale.faq.a2 }}</p>
</details>
<details>
<summary>{{ locale.faq.q3 }}</summary>
<p class="text">{{ locale.faq.a3 }}</p>
</details>
<details>
<summary>{{ locale.faq.q4 }}</summary>
<p class="text">{{ locale.faq.a4 }}</p>
</details>
<details>
<summary>{{ locale.faq.q5 }}</summary>
<p class="text">{{ locale.faq.a5 }}</p>
</details>
<details>
<summary>{{ locale.faq.q6 }}</summary>
<p class="text">{{ locale.faq.a6 }}</p>
</details>
<details>
<summary>{{ locale.faq.q7 }}</summary>
<p class="text">{{ locale.faq.a7 }}</p>
</details>
</div>
</div>
</section>
</div>
{{> footer-default }}
</body>
</html>

View File

@@ -1,130 +1,130 @@
<!DOCTYPE html>
<html lang="en">
<head>
{{> head-common }}
<!-- page specific -->
<link rel="stylesheet" href="/assets/css/pretendo-home.css">
</head>
<body>
{{> navbar }}
<div class="contentWrapper">
<header>
<h1>{{ locale.home.header.title }}</h1>
<hr>
<h3>{{ locale.home.header.text }}</h3>
</header>
</div>
<div class="contentWrapper bgLines">
<div class="bgExtrude"></div>
<section class="bigCardWrapper">
<div class="bigCard">
<p class="txt-highlight">{{ locale.about.caption }}</p>
<h1 class="txt-title">{{ locale.about.title }}</h1>
<p>{{ locale.about.text }}</p>
</div>
</section>
<section class="bigCardWrapper">
<div class="bigCard">
<p class="txt-highlight">{{ locale.credits.caption }}</p>
<h1 class="txt-title">{{ locale.credits.title }}</h1>
<div class="cardProfiles">
<!-- profile -->
<div class="profile">
<img class="profileIcon" src="https://github.com/redduckss.png">
<div class="profileText">
<div class="profileTextDiv">
<h2 class="txt-smallHeading">Jonathan Barrow (RedDucks)</h2>
<p>Project owner and lead developer</p>
</div>
<a href="https://github.com/RedDuckss" target="_blank"><button class="btn small">GitHub</button></a>
</div>
</div>
<div class="profile">
<img class="profileIcon" src="https://github.com/caramelkat.png">
<div class="profileText">
<div class="profileTextDiv">
<h2 class="txt-smallHeading">Jemma (CaramelKat)</h2>
<p>Miiverse research and development</p>
</div>
<a href="https://github.com/CaramelKat" target="_blank"><button class="btn small">GitHub</button></a>
</div>
</div>
<div class="profile">
<img class="profileIcon" src="https://github.com/superwhiskers.png">
<div class="profileText">
<div class="profileTextDiv">
<h2 class="txt-smallHeading">superwhiskers</h2>
<p>crunch library development</p>
</div>
<a href="https://github.com/superwhiskers" target="_blank"><button class="btn small">GitHub</button></a>
</div>
</div>
<div class="profile">
<img class="profileIcon" src="https://github.com/supermariodabom.png">
<div class="profileText">
<div class="profileTextDiv">
<h2 class="txt-smallHeading">SuperMarioDaBom</h2>
<p>Console and other system research</p>
</div>
<a href="https://github.com/SuperMarioDaBom" target="_blank"><button class="btn small">GitHub</button></a>
</div>
</div>
<div class="profile">
<img class="profileIcon" src="https://github.com/NexoDevelopment.png">
<div class="profileText">
<div class="profileTextDiv">
<h2 class="txt-smallHeading">Rambo6Glaz</h2>
<p>Network installer and console research</p>
</div>
<a href="https://github.com/NexoDevelopment" target="_blank"><button class="btn small">GitHub</button></a>
</div>
</div>
<div class="profile">
<img class="profileIcon" src="https://github.com/mrjvs.png">
<div class="profileText">
<div class="profileTextDiv">
<h2 class="txt-smallHeading">mrjvs</h2>
<p>Web development and early eShop research</p>
</div>
<a href="https://github.com/mrjvs" target="_blank"><button class="btn small">GitHub</button></a>
</div>
</div>
<div class="profile">
<img class="profileIcon" src="https://github.com/kxpler442b.png">
<div class="profileText">
<div class="profileTextDiv">
<h2 class="txt-smallHeading">Benjamin Moss (kxpler442b)</h2>
<p>Web development</p>
</div>
<a href="https://github.com/kxpler442b" target="_blank"><button class="btn small">GitHub</button></a>
</div>
</div>
<div class="profile">
<img class="profileIcon" src="https://github.com/jipfr.png">
<div class="profileText">
<div class="profileTextDiv">
<h2 class="txt-smallHeading">Jip Fr</h2>
<p>Web development</p>
</div>
<a href="https://github.com/jipfr" target="_blank"><button class="btn small">GitHub</button></a>
</div>
</div>
<div class="profile">
<img class="profileIcon" src="https://cdn.discordapp.com/avatars/186572995848830987/b55c0d4e7bfd792edf0689f83a25d8ea.png?size=2048">
<div class="profileText">
<div class="profileTextDiv">
<h2 class="txt-smallHeading">Kinnay</h2>
<p>None of this would be possible without the research and help done by Kinnay on PRUDP and nex</p>
</div>
<a href="https://github.com/Kinnay" target="_blank"><button class="btn small">GitHub</button></a>
</div>
</div>
</div>
</div>
</section>
</div>
{{> footer-default }}
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
{{> head-common }}
<!-- page specific -->
<link rel="stylesheet" href="/assets/css/pretendo-home.css">
</head>
<body>
{{> navbar }}
<div class="contentWrapper">
<header>
<h1>{{ locale.home.header.title }}</h1>
<hr>
<h3>{{ locale.home.header.text }}</h3>
</header>
</div>
<div class="contentWrapper bgLines">
<div class="bgExtrude"></div>
<section class="bigCardWrapper">
<div class="bigCard">
<p class="txt-highlight">{{ locale.about.caption }}</p>
<h1 class="txt-title">{{ locale.about.title }}</h1>
<p>{{ locale.about.text }}</p>
</div>
</section>
<section class="bigCardWrapper">
<div class="bigCard">
<p class="txt-highlight">{{ locale.credits.caption }}</p>
<h1 class="txt-title">{{ locale.credits.title }}</h1>
<div class="cardProfiles">
<!-- profile -->
<div class="profile">
<img class="profileIcon" src="https://github.com/redduckss.png">
<div class="profileText">
<div class="profileTextDiv">
<h2 class="txt-smallHeading">Jonathan Barrow (RedDucks)</h2>
<p>{{ locale.credits.redducks }}</p>
</div>
<a href="https://github.com/RedDuckss" target="_blank"><button class="btn small">GitHub</button></a>
</div>
</div>
<div class="profile">
<img class="profileIcon" src="https://github.com/caramelkat.png">
<div class="profileText">
<div class="profileTextDiv">
<h2 class="txt-smallHeading">Jemma (CaramelKat)</h2>
<p>{{ locale.credits.caramelkat }}</p>
</div>
<a href="https://github.com/CaramelKat" target="_blank"><button class="btn small">GitHub</button></a>
</div>
</div>
<div class="profile">
<img class="profileIcon" src="https://github.com/superwhiskers.png">
<div class="profileText">
<div class="profileTextDiv">
<h2 class="txt-smallHeading">superwhiskers</h2>
<p>{{ locale.credits.superwhiskers }}</p>
</div>
<a href="https://github.com/superwhiskers" target="_blank"><button class="btn small">GitHub</button></a>
</div>
</div>
<div class="profile">
<img class="profileIcon" src="https://github.com/supermariodabom.png">
<div class="profileText">
<div class="profileTextDiv">
<h2 class="txt-smallHeading">SuperMarioDaBom</h2>
<p>{{ locale.credits.supermariodabom }}</p>
</div>
<a href="https://github.com/SuperMarioDaBom" target="_blank"><button class="btn small">GitHub</button></a>
</div>
</div>
<div class="profile">
<img class="profileIcon" src="https://github.com/NexoDevelopment.png">
<div class="profileText">
<div class="profileTextDiv">
<h2 class="txt-smallHeading">Rambo6Glaz</h2>
<p>{{ locale.credits.rambo6glaz }}</p>
</div>
<a href="https://github.com/NexoDevelopment" target="_blank"><button class="btn small">GitHub</button></a>
</div>
</div>
<div class="profile">
<img class="profileIcon" src="https://github.com/mrjvs.png">
<div class="profileText">
<div class="profileTextDiv">
<h2 class="txt-smallHeading">mrjvs</h2>
<p>{{ locale.credits.mrjvs }}</p>
</div>
<a href="https://github.com/mrjvs" target="_blank"><button class="btn small">GitHub</button></a>
</div>
</div>
<div class="profile">
<img class="profileIcon" src="https://github.com/kxpler442b.png">
<div class="profileText">
<div class="profileTextDiv">
<h2 class="txt-smallHeading">Benjamin Moss (kxpler442b)</h2>
<p>{{ locale.credits.kxpler442b }}</p>
</div>
<a href="https://github.com/kxpler442b" target="_blank"><button class="btn small">GitHub</button></a>
</div>
</div>
<div class="profile">
<img class="profileIcon" src="https://github.com/jipfr.png">
<div class="profileText">
<div class="profileTextDiv">
<h2 class="txt-smallHeading">Jip Fr</h2>
<p>{{ locale.credits.jipfr }}</p>
</div>
<a href="https://github.com/jipfr" target="_blank"><button class="btn small">GitHub</button></a>
</div>
</div>
<div class="profile">
<img class="profileIcon" src="https://cdn.discordapp.com/avatars/186572995848830987/b55c0d4e7bfd792edf0689f83a25d8ea.png?size=2048">
<div class="profileText">
<div class="profileTextDiv">
<h2 class="txt-smallHeading">Kinnay</h2>
<p>{{ locale.credits.kinnay }}</p>
</div>
<a href="https://github.com/Kinnay" target="_blank"><button class="btn small">GitHub</button></a>
</div>
</div>
</div>
</div>
</section>
</div>
{{> footer-default }}
</body>
</html>

View File

@@ -1,14 +1,14 @@
<nav class="navWrapper" id="nav">
<a class="navItem brand" href="/">{{ locale.nav.brand }}</a>
<a class="navItem" href="/connecting">Connecting</a>
<a class="navItem" href="/cemu">Cemu</a>
<a class="navItem" href="/faq">FAQ</a>
<a class="navItem" href="https://github.com/PretendoNetwork/" target="_blank"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-external-link"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line></svg> GitHub</a>
<a class="navItem" href="https://invite.gg/pretendo" target="_blank"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-external-link"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line></svg> Discord</a>
<div class="navSpread"></div>
<a class="navItem hamburger" id="navToggle">
<span></span>
<span></span>
<span></span>
</a>
<nav class="navWrapper" id="nav">
<a class="navItem brand" href="/">{{ locale.nav.brand }}</a>
<a class="navItem" href="/connecting">{{ locale.connecting.title }}</a>
<a class="navItem" href="/cemu">{{ locale.Cemu.title }}</a>
<a class="navItem" href="/faq">{{ locale.faq.title }}</a>
<a class="navItem" href="https://github.com/PretendoNetwork/" target="_blank"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-external-link"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line></svg> GitHub</a>
<a class="navItem" href="https://invite.gg/pretendo" target="_blank"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-external-link"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line></svg> Discord</a>
<div class="navSpread"></div>
<a class="navItem hamburger" id="navToggle">
<span></span>
<span></span>
<span></span>
</a>
</nav>