You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
680 B
17 lines
680 B
3 years ago
|
import styles from '../styles/components/Buttons.module.css';
|
||
|
|
||
|
export default function Footer() {
|
||
|
return (
|
||
|
<section className={styles.section}>
|
||
|
<h2>Learn more</h2>
|
||
|
<div>
|
||
|
<a href="/about">About</a>
|
||
|
<a href="/contact">Contact</a>
|
||
|
<a href="https://twitter.com/DubbelNull" target="_blank">Twitter</a>
|
||
|
<a href="https://gitlab.com/dubbelnull" target="_blank">GitLab</a>
|
||
|
<a href="https://discord.gg/976Xskh8Dd" target="_blank">Discord</a>
|
||
|
<a href="https://status.dubbelnull.com" target="_blank">Statuspage</a>
|
||
|
</div>
|
||
|
</section>
|
||
|
)
|
||
|
}
|