mirror of
https://github.com/apricote/ein-pfeil-am-rechten-fleck.de.git
synced 2026-01-13 21:11:01 +00:00
14 lines
258 B
TypeScript
14 lines
258 B
TypeScript
import Image from "next/image";
|
|
|
|
export function Header() {
|
|
return (
|
|
<div className="flex justify-center pt-4">
|
|
<Image
|
|
className=""
|
|
src="/placeholder.svg"
|
|
height="150"
|
|
width="300"
|
|
></Image>
|
|
</div>
|
|
);
|
|
}
|