mirror of
https://github.com/DerTyp7/apartment-altenau-nextjs.git
synced 2025-10-29 12:52:12 +01:00
15 lines
432 B
JavaScript
15 lines
432 B
JavaScript
import Link from "next/link";
|
|
import styles from "../styles/Footer.module.scss";
|
|
|
|
export default function Footer({ localeTexts }) {
|
|
return (
|
|
<div className={styles.footer}>
|
|
<ul className={styles.footerLinks}>
|
|
<Link href="/legal">{localeTexts?.footer?.legal}</Link>
|
|
<Link href="/privacy">{localeTexts?.footer?.privacy}</Link>
|
|
</ul>
|
|
<p className={styles.copyrightText}>© altenau-meister.de</p>
|
|
</div>
|
|
);
|
|
}
|