diff --git a/src/routes/_index/banner.svelte b/src/routes/_index/banner.svelte index 1af42c5f..c21c35fa 100644 --- a/src/routes/_index/banner.svelte +++ b/src/routes/_index/banner.svelte @@ -76,21 +76,27 @@
banner -
+
{#each Object.entries(featured) as [_, item], i}
-

+

{#if loading} {:else} - {item.count} + {(item.count / 1000).toFixed(1)}K {/if}

-

{$t(item.name)}

+

+ {$t(item.name)} +

{/each}
diff --git a/src/routes/index.svelte b/src/routes/index.svelte index 0b0412d3..1b2a960b 100644 --- a/src/routes/index.svelte +++ b/src/routes/index.svelte @@ -1,6 +1,6 @@