Removing gatsby site
This commit is contained in:
@@ -1 +0,0 @@
|
|||||||
import "./src/styles/global.css"
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
/**
|
|
||||||
Urban Brothers site config
|
|
||||||
*/
|
|
||||||
|
|
||||||
module.exports = {
|
|
||||||
siteMetadata: {
|
|
||||||
title: `Urban Brothers Website`,
|
|
||||||
siteURL: `https://www.urbanbrothers.de`,
|
|
||||||
description: `Homepage of the Urban Brothers`,
|
|
||||||
},
|
|
||||||
// pathPrefix: ``, // URL prefix of the whole site
|
|
||||||
plugins: [
|
|
||||||
{
|
|
||||||
resolve: `gatsby-plugin-manifest`,
|
|
||||||
options: {
|
|
||||||
name: `Urban Brothers Homepage`,
|
|
||||||
short_name: `Urban Website`,
|
|
||||||
start_url: `/`,
|
|
||||||
background_color: `#6b37bf`,
|
|
||||||
theme_color: `#6b37bf`,
|
|
||||||
// Enables "Add to Homescreen" prompt and disables browser UI (including back button)
|
|
||||||
display: `standalone`,
|
|
||||||
icon: `src/images/icon.png`, // This path is relative to the root of the site.
|
|
||||||
},
|
|
||||||
},
|
|
||||||
],
|
|
||||||
}
|
|
||||||
18541
package-lock.json
generated
18541
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
37
package.json
37
package.json
@@ -1,37 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "urban_website",
|
|
||||||
"private": false,
|
|
||||||
"description": "Simple homepage of the Urban Brothers.",
|
|
||||||
"version": "0.1.0",
|
|
||||||
"license": "MIT",
|
|
||||||
"scripts": {
|
|
||||||
"build": "gatsby build",
|
|
||||||
"develop": "gatsby develop",
|
|
||||||
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
|
|
||||||
"start": "npm run develop",
|
|
||||||
"serve": "gatsby serve",
|
|
||||||
"clean": "gatsby clean",
|
|
||||||
"snyk-protect": "snyk protect",
|
|
||||||
"prepare": "npm run snyk-protect"
|
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"dateformat": "^3.0.3",
|
|
||||||
"gatsby": "^2.23.9",
|
|
||||||
"gatsby-plugin-manifest": "^2.4.13",
|
|
||||||
"react": "^16.13.1",
|
|
||||||
"react-dom": "^16.13.1",
|
|
||||||
"snyk": "^1.347.1"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
|
||||||
"prettier": "^1.19.1",
|
|
||||||
"purgecss": "^2.1.2"
|
|
||||||
},
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/creyD/urban_website"
|
|
||||||
},
|
|
||||||
"bugs": {
|
|
||||||
"url": "https://github.com/creyD/urban_website/issues"
|
|
||||||
},
|
|
||||||
"snyk": true
|
|
||||||
}
|
|
||||||
@@ -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