This commit is contained in:
Julian Tölle 2021-03-21 00:15:22 +01:00
parent 42ec5539dc
commit b536ee4124
23 changed files with 8696 additions and 223 deletions

11
components/Footer.tsx Normal file
View file

@ -0,0 +1,11 @@
import Link from "next/link";
export const Footer = () => {
return (
<div>
<Link href="/imprint">
<a>Impressum & Datenschutz</a>
</Link>
</div>
);
};