added minecraft page

This commit is contained in:
2023-01-26 16:01:40 +10:00
parent 87d55b13f9
commit 03bcf2df73
2 changed files with 40 additions and 0 deletions

View File

@@ -76,6 +76,14 @@ export const routes = [
}, },
component: () => import("@/views/Terms.vue"), component: () => import("@/views/Terms.vue"),
}, },
{
path: "/minecraft",
name: "minecraft",
meta: {
title: "Minecraft",
},
component: () => import("@/views/Minecraft.vue"),
},
{ {
path: "/workshops", path: "/workshops",
children: [ children: [

View File

@@ -0,0 +1,32 @@
<template>
<SMContainer class="rules">
<h1>Connecting to our Minecraft Server</h1>
<ol>
<li>
Open up your Minecraft on your computer (Java) or tablet
(Bedrock) and make sure you are using version 1.19.3
</li>
<li>Click Multiplayer</li>
<li>Click Add Server</li>
<li>Enter Server Name STEMMechanics</li>
<li>Enter Server Address mc.stemmech.com.au</li>
<li>
We have a custom resourcepack which you can enable before
joining
</li>
<li>Click Done</li>
<li>Join the Server!</li>
</ol>
</SMContainer>
</template>
<style lang="scss">
.rules {
h2 {
margin-bottom: 0.5rem;
}
li {
margin-bottom: 0.5rem;
}
}
</style>