feat: Add flag URL to Country type and update CountryCard component

This commit is contained in:
Sean Morley
2024-08-05 14:17:41 -04:00
parent 77c11fefea
commit d9e554ad42
14 changed files with 96 additions and 56 deletions

View File

@@ -249,7 +249,10 @@
{#if data.props.collection}
<div>
<p class="text-sm text-muted-foreground">Collection</p>
<p class="text-base font-medium">{data.props.collection.name}</p>
<a
class="text-base font-medium link"
href="/collections/{data.props.collection.id}">{data.props.collection.name}</a
>
</div>
{/if}
</div>