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
+17
View File
@@ -0,0 +1,17 @@
<script>
import ImageTile from "./ImageTile.svelte";
/** @type {string} **/
export let src;
/** @type {string} **/
export let href;
/** @type {"_self" | "_blank" | "_parent" | "_top" } **/
export let target = "_self";
</script>
<div class="hover:invert">
<ImageTile {src}>
<a {href} {target} class="flex items-center justify-center h-full">
<slot />
</a>
</ImageTile>
</div>