adds forge support, fixes some critical errors

This commit is contained in:
2023-10-08 13:38:00 -06:00
parent 6944cbb9f7
commit ad4629576c
21 changed files with 3484 additions and 132 deletions

14
routes/setup/forge.tsx Normal file
View File

@@ -0,0 +1,14 @@
import { Content } from "../../components/Content.tsx";
import { ForgeVersions } from "../../islands/forgeVersions.tsx";
export default function ForgeSetup() {
return (
<div class="container p-8">
<Content>
<h2 class="font-pixel text-2xl">Forge Setup</h2>
<p>Select the game version you wish to create a server for.</p>
<ForgeVersions />
</Content>
</div>
);
}