rename briev to video

This commit is contained in:
2024-07-15 14:29:45 +02:00
parent fca39b047d
commit 7a1070f085
7 changed files with 15 additions and 4 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 458 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 476 KiB

Before

Width:  |  Height:  |  Size: 766 KiB

After

Width:  |  Height:  |  Size: 766 KiB

+7
View File
@@ -5,6 +5,7 @@
import drummachine from "$lib/images/home/drummachine.webp";
import scouts from "$lib/images/home/scouts.webp";
import console_image from "$lib/images/home/console.webp";
import lauch from "$lib/images/home/lauch.webp";
</script>
<main>
@@ -26,6 +27,12 @@
</h2>
</ImageLinkTile>
<ImageLinkTile src={lauch} href="/video">
<h2 class="text-3xl font-bold text-white hover:underline text-shadow-lg">
Videos
</h2>
</ImageLinkTile>
<ImageLinkTile src={drummachine} href="/musig">
<h2 class="text-3xl font-bold text-white hover:underline text-shadow-lg">
Musig
@@ -1,18 +1,18 @@
<script>
import ImageTile from "$lib/components/ImageTile.svelte";
import Markdown from "$lib/components/Markdown.svelte";
import HeadImage from "$lib/images/brief/niklas_bw.webp";
import HeadImage from "$lib/images/video/jochen.webp";
</script>
<ImageTile src={HeadImage}>
<h2
class="flex items-center justify-center h-full text-3xl font-bold text-white text-shadow-lg"
>
ä Brief
Video Sammlig:
</h2>
</ImageTile>
<main class="flex items-center justify-center pt-8 bg-black min-h-screen px-12">
<section class="max-w-screen-md">
<Markdown src="/brief/Brief.md" />
<Markdown src="/video/Video.md" />
</section>
</main>