activity types for autocomplete in the future

This commit is contained in:
Sean Morley
2024-07-17 19:35:02 -04:00
parent 7431d45124
commit 2b3c96bb8d
4 changed files with 72 additions and 5 deletions

View File

@@ -16,7 +16,9 @@
{#if adventures.length === 0}
<NotFound />
{:else}
{#each adventures as adventure}
<AdventureCard type={adventure.type} {adventure} />
{/each}
<div class="flex flex-wrap gap-4 mr-4 justify-center content-center">
{#each adventures as adventure}
<AdventureCard type={adventure.type} {adventure} />
{/each}
</div>
{/if}