mirror of
https://github.com/apricote/ein-pfeil-am-rechten-fleck.de.git
synced 2026-02-07 18:27:01 +00:00
12 lines
183 B
TypeScript
12 lines
183 B
TypeScript
|
|
import Link from "next/link";
|
||
|
|
|
||
|
|
export const Footer = () => {
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
<Link href="/imprint">
|
||
|
|
<a>Impressum & Datenschutz</a>
|
||
|
|
</Link>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
};
|