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.
18 lines
775 B
18 lines
775 B
import styles from '../styles/components/Buttons.module.css';
|
|
import Link from 'next/link'
|
|
|
|
export default function Footer() {
|
|
return (
|
|
<section className={styles.section}>
|
|
<h2>Learn more</h2>
|
|
<div>
|
|
<Link href="">About</Link>
|
|
<Link href="">Contact</Link>
|
|
<a href="https://twitter.com/DubbelNull" target="_blank" rel="noreferrer">Twitter</a>
|
|
<a href="https://gitlab.com/dubbelnull" target="_blank" rel="noreferrer">GitLab</a>
|
|
<a href="https://discord.gg/976Xskh8Dd" target="_blank" rel="noreferrer">Discord</a>
|
|
<a href="https://status.dubbelnull.com" target="_blank" rel="noreferrer">Statuspage</a>
|
|
</div>
|
|
</section>
|
|
)
|
|
} |