✨ Add footer
This commit is contained in:
19
components/Footer.js
Normal file
19
components/Footer.js
Normal 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;
|
||||
Reference in New Issue
Block a user