diff --git a/.prettierrc b/.prettierrc index 7586898..8014a27 100644 --- a/.prettierrc +++ b/.prettierrc @@ -1,7 +1,8 @@ { - "endOfLine": "lf", - "semi": false, - "singleQuote": false, - "tabWidth": 4, - "trailingComma": "es5" + "endOfLine": "lf", + "semi": false, + "singleQuote": false, + "tabWidth": 4, + "trailingComma": "es5", + "printWidth": 160 } diff --git a/src/components/footer.js b/src/components/footer.js index 1309a11..5f276af 100644 --- a/src/components/footer.js +++ b/src/components/footer.js @@ -14,6 +14,10 @@ export default () => ( github + . + + donate + .about ) diff --git a/src/components/header.js b/src/components/header.js index 48c0749..ffdfaa4 100644 --- a/src/components/header.js +++ b/src/components/header.js @@ -1,3 +1,9 @@ import React from "react" +import Menu from "../components/menu" -export default (props) =>

{props.headline}

+export default (props) => ( +
+

{props.headline}

+ +
+) diff --git a/src/components/main_entry.js b/src/components/main_entry.js index ffbc7b0..2d59f44 100644 --- a/src/components/main_entry.js +++ b/src/components/main_entry.js @@ -2,7 +2,7 @@ import React from "react" export default (props) => (
-

{props.title}

+

{props.title}

{props.text}

) diff --git a/src/components/menu.js b/src/components/menu.js new file mode 100644 index 0000000..0baec5b --- /dev/null +++ b/src/components/menu.js @@ -0,0 +1,8 @@ +import React from "react" +import { Link } from "gatsby" + +export default () => ( +
+ Home | Communication | Projects +
+) diff --git a/src/pages/404.js b/src/pages/404.js new file mode 100644 index 0000000..e69de29 diff --git a/src/pages/about.js b/src/pages/about.js index 5b0f57d..aabd161 100644 --- a/src/pages/about.js +++ b/src/pages/about.js @@ -6,25 +6,17 @@ export default () => (
-

- As this is a private website, so no legal notice is required. - However let's clarify a few things: -

+

As this is a private website, so no legal notice is required. However let's clarify a few things:

Cookies

This site uses none.

GDPR

-

- As this site doesn't use any user data, it complies with GDPR - regulations. -

+

As this site doesn't use/ store any user data, it complies with GDPR regulations.

Legal

- If you have any questions or queries regarding this website, - please write{" "} - an email. + If you have any questions or queries regarding this website, please write an email.

diff --git a/src/pages/comms.js b/src/pages/comms.js new file mode 100644 index 0000000..e540be8 --- /dev/null +++ b/src/pages/comms.js @@ -0,0 +1,24 @@ +import React from "react" +import Header from "../components/header" +import Footer from "../components/footer" + +export default () => ( +
+
+

Discord

+

+ Feel free to join our Urban Discord here. +

+

TeamSpeak 3

+

+ You may also join our TeamSpeak server, accessible under this same urbanbrothers.de domain. +

+

Steam

+ The{" "} + + steam community group + {" "} + is rarely used for communications, but you may use it to show off the clan tag and join in with other members. +
+
+) diff --git a/src/pages/index.js b/src/pages/index.js index d279a56..fd098b7 100644 --- a/src/pages/index.js +++ b/src/pages/index.js @@ -8,39 +8,8 @@ export default () => (

Welcome to the Urban Brothers Website

- - - -

- As it was requested by some people over the last years, we - finally created a{" "} - - donation link (PayPal). - {" "} - All the donated money will go 100% towards keeping up the - servers and running other community related projects in the - future. However our services will continue to be freely - available for anyone. -{" "} - Thank you to everyone who donated. -

-

- For help with any community related matters, please contact one - of our moderators or admins on either TeamSpeak or Discord. -

+

For help with any community related matters, please contact one of our moderators or admins on either TeamSpeak or Discord.

diff --git a/src/pages/projects.js b/src/pages/projects.js new file mode 100644 index 0000000..04f04b5 --- /dev/null +++ b/src/pages/projects.js @@ -0,0 +1,16 @@ +import React from "react" +import Header from "../components/header" +import Footer from "../components/footer" + +export default () => ( +
+
+

Minecraft

+

Our small Minecraft server is hosted on this server. This project currently works with a whitelist of people.

+

League/ TFT

+

Most of the times, there are people who play League or TFT in the respecting channels.

+

More

+

More projects are coming regularly (kind of) so stay tuned!

+
+)