svelte-testing/src/components/header.svelte

29 lines
886 B
Svelte

<script>
import Button from './navbutton.svelte';
</script>
<div class="md:h-16 h-24 align-middle grid grid-cols-7 sm:grid-rows-1 grid-rows-2">
<div class="h-16 col-span-7 sm:col-span-4 flex flex-row flex-wrap">
<img
class="h-4/5 md:ml-20 my-auto"
src="https://dutchellie.nl/DutchEllie/proper-website-2/raw/branch/main/web/static/images/icon.png"
alt="Icon"
/>
<div class="pl-5 mt-1">
<h1 class="text-2xl md:text-3xl h-min font-medium">Internetica Galactica 2</h1>
<p class="h-min text-xs">Surviving the rewriting</p>
</div>
</div>
<div class="sm:col-start-5 col-start-1 col-end-7 grid grid-cols-6">
<nav
class="h-full flex items-end md:col-start-4 md:col-span-2 col-span-7 gap-2 text-md"
>
<Button link="/" text="Home" />
<Button link="/about" text="About" />
</nav>
</div>
<!-->
<hr class="col-span-full border-slate-700" />
</!-->
</div>