Archived
1
0
This repository has been archived on 2026-02-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
urban_website/src/components/footer.js
Conrad a57bbce5e3 Site Rework
- Split up into categories
2020-06-05 09:15:40 +02:00

24 lines
603 B
JavaScript

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>
)