Put everything in its right place

This commit is contained in:
2022-02-24 14:38:17 +01:00
parent 8777be462d
commit e31ebc1799
9 changed files with 20 additions and 24 deletions

View File

@@ -0,0 +1,20 @@
import Link from "next/link";
import { Pane, Heading } from "evergreen-ui";
export default function Nav() {
return (
<Pane display="flex">
<Link href="/">
<h2 className="px-2 place-self-center">
<img src="logo.png" className="h-12" />
</h2>
</Link>
<Link href="/onas">
<h3 className="px-3 py-2 place-self-end">O nas</h3>
</Link>
<Link href="/kontakt">
<h3 className="px-3 py-2 place-self-end">Kontakt</h3>
</Link>
</Pane>
);
}