mirror of
https://github.com/DerTyp7/apartment-altenau-nextjs.git
synced 2025-10-30 13:17:12 +01:00
[init] initlialize next app & convert old react app
This commit is contained in:
14
components/Footer.jsx
Normal file
14
components/Footer.jsx
Normal file
@@ -0,0 +1,14 @@
|
||||
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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user