Files
apartment-altenau-nextjs/components/Footer.jsx
Janis 47fc8d8c18 f
2022-12-16 23:20:02 +01:00

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}>&#169; altenau-meister.de</p>
</div>
);
}