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

29 lines
832 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="w-5/6 md:w-2/3 2xl:w-1/2 bg-yellow-300 rounded-2xl">
<p class="font-vinque text-yellow-00 text-6xl text-center 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>
2021-04-24 01:30:09 +02:00
<footer class=" p-4 bg-yellow-700 rounded-b-2xl text-center">
<a href="imprint" class="text-cocoa-brown-800">Impressum & Datenschutz</a>
</footer>
</div>
</div>