basic set-up; started work on projects page

This commit is contained in:
2025-04-01 13:55:54 +02:00
parent 9ccd97120b
commit 29e812f80d
7 changed files with 170 additions and 9 deletions

View File

@@ -1,14 +1,14 @@
<script lang="ts">
let {
bannerImg,
bannerImgAlt,
bannerImg = "",
bannerImgAlt = "",
title,
subtitle,
subtitle = "",
}: {
bannerImg: string,
bannerImgAlt: string,
title: string,
subtitle: string,
bannerImg?: string;
bannerImgAlt?: string;
title: string;
subtitle?: string;
} = $props();
</script>