Archived
1
0

Added footer links

This commit is contained in:
2020-01-09 20:02:55 +01:00
parent e24843b4ce
commit d8763fa455
2 changed files with 10 additions and 2 deletions

View File

@@ -1,6 +1,12 @@
import React from "react" import React from "react"
import { Link } from "gatsby"
export default () => ( export default () => (
<div style={{ textAlign: `center` }}> <div style={{ textAlign: `center` }}>
TeamSpeak.Discord.Steam.About.GitHub <a href="ts3server://urbanbrothers.de">ts</a>.
<a href="https://discord.gg/k6TnPq">discord</a>.
<a href="https://steamcommunity.com/groups/urban_group">steam</a>.
<a href="https://github.com/creyD/urban_website">github</a>.
<Link to="/about/">about</Link>
</div> </div>
) )

View File

@@ -1,7 +1,9 @@
import React from "react" import React from "react"
import Header from "../components/header"
export default () => ( export default () => (
<div> <div>
<h1>About</h1> <Header headline="About" />
// TODO Impressum // TODO Impressum
</div> </div>
) )