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