add landingpage

This commit is contained in:
2024-05-13 11:51:35 +02:00
commit bf0da398b9
23 changed files with 2026 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
<script>
import "../app.css";
</script>
<header class="fixed z-50 mix-blend-difference p-1">
<a href="/" class="text-white text-2xl">schreifuchs.ch</a>
</header>
<slot />
+32
View File
@@ -0,0 +1,32 @@
<script>
import ImageLinkTile from "$lib/components/ImageLinkTile.svelte";
import mouse from "$lib/images/mouse.webp";
import drummachine from "$lib/images/drummachine.webp";
import scouts from "$lib/images/scouts.webp";
import console_image from "$lib/images/console.webp";
</script>
<ImageLinkTile src={console_image} href="">
<h2 class="text-3xl font-bold text-white hover:underline text-shadow-lg">
Informatik
</h2>
</ImageLinkTile>
<ImageLinkTile src={scouts} href="https://pfadifrisco.ch/" target="_blank">
<h2 class="text-3xl font-bold text-white hover:underline text-shadow-lg">
Pfadi
</h2>
</ImageLinkTile>
<ImageLinkTile src={mouse} href="">
<h2 class="text-3xl font-bold text-white hover:underline text-shadow-lg">
Fotos
</h2>
</ImageLinkTile>
<ImageLinkTile src={drummachine} href="">
<h2 class="text-3xl font-bold text-white hover:underline text-shadow-lg">
Musik
</h2>
</ImageLinkTile>