mirror of
https://github.com/DerTyp7/apartment-altenau-nextjs.git
synced 2025-10-30 13:17:12 +01:00
f
This commit is contained in:
@@ -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}>© domain.de</p>
|
||||
<p className={styles.copyrightText}>© altenau-meister.de</p>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user