This commit is contained in:
Janis
2022-12-16 23:20:02 +01:00
parent 163e35a49e
commit 47fc8d8c18
14 changed files with 1419 additions and 134 deletions

View File

@@ -1,14 +1,14 @@
import Link from "next/link";
import styles from "../styles/Footer.module.scss";
export default function Footer() {
export default function Footer({ localeTexts }) {
return (
<div className={styles.footer}>
<ul className={styles.footerLinks}>
<Link href="/legal">Legal Notice | Impressum</Link>
<Link href="/privacy">Privacy | Datenschutz</Link>
<Link href="/legal">{localeTexts?.footer?.legal}</Link>
<Link href="/privacy">{localeTexts?.footer?.privacy}</Link>
</ul>
<p className={styles.copyrightText}>&#169; domain.de</p>
<p className={styles.copyrightText}>&#169; altenau-meister.de</p>
</div>
);
}