[init] initlialize next app & convert old react app

This commit is contained in:
Janis
2022-12-16 17:13:47 +01:00
parent 95d8b832e9
commit e439aad1db
42 changed files with 10568 additions and 5279 deletions

14
components/Footer.jsx Normal file
View 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}>&#169; domain.de</p>
</div>
);
}