add sveltekit version

This commit is contained in:
Julian Tölle 2021-04-24 01:30:09 +02:00
parent 2f522be388
commit d1c0eb8d17
20 changed files with 3252 additions and 0 deletions

View file

@ -0,0 +1,14 @@
<script lang="ts">
export let href: string;
export let text: string;
</script>
<li class="block w-1/2 bg-amber-800">
<a
class="text-gray-300 hover:text-amber-200 focus:text-amber-200 focus:outline-none transition"
alt=""
{href}
>
{text}
</a>
</li>