Archived
1
0
This repository has been archived on 2026-02-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
urban_website/src/pages/projects.js
Conrad a57bbce5e3 Site Rework
- Split up into categories
2020-06-05 09:15:40 +02:00

17 lines
613 B
JavaScript

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>
)