first working prototype

This commit is contained in:
2023-06-19 20:38:45 +02:00
parent 89612f02b6
commit 120781a57a
287 changed files with 863 additions and 268 deletions

View File

@@ -0,0 +1,16 @@
<script lang="ts">
import type { PageData } from './$types';
export let data: PageData;
import TagCloud from '$lib/components/TagCloud.svelte';
import TagBall from '$lib/components/TagBall.svelte';
</script>
<h1>Rezepte</h1>
<h2>Kategorien</h2>
<section>
<TagCloud>
{#each data.categories as tag}
<TagBall {tag} ref="/rezepte/category">
</TagBall>
{/each}
</TagCloud>
</section>