ein-pfeil-am-rechten-fleck.de/src/routes/+layout.svelte

30 lines
650 B
Svelte
Raw Normal View History

2021-04-24 01:30:09 +02:00
<script>
import "../app.css";
2021-04-24 01:30:09 +02:00
</script>
<header class="flex justify-center">
<a href="/">
<img
height="300"
width="300"
alt="Logo, Illustration von einem Pfeil über einem Herz"
src="logo.png"
/>
</a>
2021-04-24 01:30:09 +02:00
</header>
<div class="flex items-center justify-center">
<div class="max-w-screen-md">
<p class="font-vinque text-6xl mt-12">
Ein <span class="text-[4rem] relative bottom-2">P</span>feil am rechten
<span class="text-red-500"
><span class="text-[4rem] relative bottom-2">F</span>leck</span
>
</p>
2021-04-24 01:30:09 +02:00
<main class="p-4 font-sans">
<slot />
</main>
</div>
</div>