Import repositories from gitlab
This commit is contained in:
14
next/components/footer/index.jsx
Normal file
14
next/components/footer/index.jsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import Link from "next/link";
|
||||
import styles from "./style.module.scss";
|
||||
|
||||
export default async function Footer() {
|
||||
return (
|
||||
<footer className={styles.footer}>
|
||||
<Link href="/legal">Mentions légales</Link>
|
||||
<span className={styles.separator}> · </span>
|
||||
<Link href="/sponsor">Ils nous soutiennent</Link>
|
||||
<span className={styles.separator}> · </span>
|
||||
<Link href="/contact">Contact</Link>
|
||||
</footer>
|
||||
);
|
||||
}
|
||||
13
next/components/footer/style.module.scss
Normal file
13
next/components/footer/style.module.scss
Normal file
@@ -0,0 +1,13 @@
|
||||
.footer {
|
||||
border-top: var(--fg-3) solid var(--border-width);
|
||||
text-align: center;
|
||||
padding: 0.25rem;
|
||||
|
||||
span {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
a {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user