Archived
1
0

Added blanc_ target for hyperlinks to other sites

This commit is contained in:
2020-01-10 09:55:08 +01:00
parent 9e7db9a91b
commit 4e704b740a
2 changed files with 17 additions and 5 deletions

View File

@@ -3,10 +3,21 @@ import { Link } from "gatsby"
export default () => (
<div style={{ textAlign: `center` }}>
<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>
<a target="_blanc" href="ts3server://urbanbrothers.de">
ts
</a>
.
<a target="_blanc" href="https://discord.gg/k6TnPq">
discord
</a>
.
<a target="_blanc" href="https://steamcommunity.com/groups/urban_group">
steam
</a>
.
<a target="_blanc" href="https://github.com/creyD/urban_website">
github
</a>
.<Link to="/about/">about</Link>
</div>
)

View File

@@ -1,2 +1,3 @@
import React from "react"
export default props => <h1 align="center">{props.headline}</h1>