mirror of
https://github.com/DerTyp7/apartment-altenau-nextjs.git
synced 2025-10-29 04:42:11 +01:00
15 lines
395 B
JavaScript
15 lines
395 B
JavaScript
import Link from "next/link";
|
|
import styles from "../styles/Footer.module.scss";
|
|
|
|
export default function Footer() {
|
|
return (
|
|
<div className={styles.footer}>
|
|
<ul className={styles.footerLinks}>
|
|
<Link href="/legal">Legal Notice | Impressum</Link>
|
|
<Link href="/privacy">Privacy | Datenschutz</Link>
|
|
</ul>
|
|
<p className={styles.copyrightText}>© domain.de</p>
|
|
</div>
|
|
);
|
|
}
|