Archived
1
0

Site Rework

- Split up into categories
This commit is contained in:
2020-06-05 09:15:40 +02:00
parent 8005d9a152
commit a57bbce5e3
8 changed files with 64 additions and 35 deletions

16
src/pages/projects.js Normal file
View File

@@ -0,0 +1,16 @@
import React from "react"
import Header from "../components/header"
import Footer from "../components/footer"
export default () => (
<div class="container">
<Header headline="Projects" />
<h2>Minecraft</h2>
<p>Our small Minecraft server is hosted on this server. This project currently works with a whitelist of people.</p>
<h2>League/ TFT</h2>
<p>Most of the times, there are people who play League or TFT in the respecting channels.</p>
<h2>More</h2>
<p>More projects are coming regularly (kind of) so stay tuned!</p>
<Footer />
</div>
)