Add footer

This commit is contained in:
stefan080106
2022-05-15 19:41:31 +02:00
parent 95095c90da
commit 4d53b60480
4 changed files with 73 additions and 0 deletions

19
components/Footer.js Normal file
View File

@@ -0,0 +1,19 @@
import styles from "../styles/Footer.module.css";
// Import Component
import Link from "next/link";
// Import Images
const Footer = () => {
return (
<footer className={styles.Footer}>
<Link href="/datenschutzerklaerung">
<a>Datenschutzerklärung</a>
</Link>
<Link href="/impressum">
<a>Impressum</a>
</Link>
</footer>
);
};
export default Footer;