Removing gatsby site
This commit is contained in:
@@ -1,23 +0,0 @@
|
||||
import React from "react"
|
||||
import { Link } from "gatsby"
|
||||
|
||||
export default () => (
|
||||
<div style={{ textAlign: `center` }}>
|
||||
<a target="_blanc" href="ts3server://urbanbrothers.de">
|
||||
ts
|
||||
</a>
|
||||
.
|
||||
<a target="_blanc" href="https://discord.gg/aYcvtWE">
|
||||
discord
|
||||
</a>
|
||||
.
|
||||
<a target="_blanc" href="https://github.com/creyD/urban_website">
|
||||
github
|
||||
</a>
|
||||
.
|
||||
<a target="_blanc" href="https://paypal.me/pools/c/89fz0b2YFk">
|
||||
donate
|
||||
</a>
|
||||
.<Link to="/about/">about</Link>
|
||||
</div>
|
||||
)
|
||||
@@ -1,9 +0,0 @@
|
||||
import React from "react"
|
||||
import Menu from "../components/menu"
|
||||
|
||||
export default (props) => (
|
||||
<div>
|
||||
<h1 align="center">{props.headline}</h1>
|
||||
<Menu />
|
||||
</div>
|
||||
)
|
||||
@@ -1,8 +0,0 @@
|
||||
import React from "react"
|
||||
|
||||
export default (props) => (
|
||||
<div id={props.title}>
|
||||
<h2>{props.title}</h2>
|
||||
<p>{props.text}</p>
|
||||
</div>
|
||||
)
|
||||
@@ -1,8 +0,0 @@
|
||||
import React from "react"
|
||||
import { Link } from "gatsby"
|
||||
|
||||
export default () => (
|
||||
<div style={{ textAlign: `center` }}>
|
||||
<Link to="//">Home</Link> | <Link to="/comms/">Communication</Link> | <Link to="/projects/">Projects</Link>
|
||||
</div>
|
||||
)
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 21 KiB |
@@ -1,28 +0,0 @@
|
||||
import React from "react"
|
||||
import Header from "../components/header"
|
||||
import Footer from "../components/footer"
|
||||
|
||||
export default () => (
|
||||
<div>
|
||||
<Header headline="About" />
|
||||
<div class="container">
|
||||
<p>As this is a private website, so no legal notice is required. However let's clarify a few things:</p>
|
||||
|
||||
<h2>Cookies</h2>
|
||||
<p>This site uses none.</p>
|
||||
|
||||
<h2>GDPR</h2>
|
||||
<p>As this site doesn't use/ store any user data, it complies with GDPR regulations.</p>
|
||||
|
||||
<h2>Legal</h2>
|
||||
<p>
|
||||
If you have any questions or queries regarding this website, please write <a herf="mailto://webmaster@urbanbrothers.de">an email.</a>
|
||||
</p>
|
||||
<a href="/">
|
||||
<button>Back to homepage</button>
|
||||
</a>
|
||||
|
||||
<Footer />
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
@@ -1,24 +0,0 @@
|
||||
import React from "react"
|
||||
import Header from "../components/header"
|
||||
import Footer from "../components/footer"
|
||||
|
||||
export default () => (
|
||||
<div class="container">
|
||||
<Header headline="Communication" />
|
||||
<h2>Discord</h2>
|
||||
<p>
|
||||
Feel free to join our Urban Discord <a href="https://discord.gg/k6TnPq">here</a>.
|
||||
</p>
|
||||
<h2>TeamSpeak 3</h2>
|
||||
<p>
|
||||
You may also join our TeamSpeak server, accessible under this same <a href="ts3server://urbanbrothers.de">urbanbrothers.de</a> domain.
|
||||
</p>
|
||||
<h2>Steam</h2>
|
||||
The{" "}
|
||||
<a href="https://steamcommunity.com/groups/urban_group" target="_blanc">
|
||||
steam community group
|
||||
</a>{" "}
|
||||
is rarely used for communications, but you may use it to show off the clan tag and join in with other members.
|
||||
<Footer />
|
||||
</div>
|
||||
)
|
||||
@@ -1,16 +0,0 @@
|
||||
import React from "react"
|
||||
import Header from "../components/header"
|
||||
import MainEntry from "../components/main_entry"
|
||||
import Footer from "../components/footer"
|
||||
|
||||
export default () => (
|
||||
<div>
|
||||
<Header headline="The Urban Brothers" />
|
||||
<p id="tagline">Welcome to the Urban Brothers Website</p>
|
||||
<div class="container">
|
||||
<MainEntry title="Help" />
|
||||
<p>For help with any community related matters, please contact one of our moderators or admins on either TeamSpeak or Discord.</p>
|
||||
</div>
|
||||
<Footer />
|
||||
</div>
|
||||
)
|
||||
@@ -1,16 +0,0 @@
|
||||
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>
|
||||
)
|
||||
@@ -1,30 +0,0 @@
|
||||
@import url("https://fonts.googleapis.com/css?family=Merriweather&display=swap");
|
||||
|
||||
html {
|
||||
background-color: lightgrey;
|
||||
}
|
||||
|
||||
* {
|
||||
font-family: "Merriweather", serif;
|
||||
}
|
||||
|
||||
a,
|
||||
a:visited,
|
||||
a:hover {
|
||||
color: red;
|
||||
}
|
||||
|
||||
#tagline {
|
||||
text-align: center;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.container {
|
||||
width: 80%;
|
||||
margin-left: 10%;
|
||||
margin-right: 10%;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style: none;
|
||||
}
|
||||
Reference in New Issue
Block a user