Update +page.svelte

This commit is contained in:
freearhey 2025-01-29 22:20:10 +03:00
parent f8a9023e88
commit a8de7b8ad9

View file

@ -65,6 +65,7 @@
<svelte:head> <svelte:head>
<title>iptv-org</title> <title>iptv-org</title>
<meta name="description" content="iptv-org is user editable database for TV channels" /> <meta name="description" content="iptv-org is user editable database for TV channels" />
<link rel="canonical" href="https://iptv-org.github.io/" />
</svelte:head> </svelte:head>
<header <header
@ -83,7 +84,7 @@
closeButton={false} closeButton={false}
> >
<section class="max-w-5xl mx-auto px-2 pt-24 sm:pt-32 pb-20 overflow-hidden min-h-full"> <section class="max-w-5xl mx-auto px-2 pt-24 sm:pt-32 pb-20 overflow-hidden min-h-full">
<SearchField bind:isLoading bind:found={$filteredChannels.length}></SearchField> <SearchField bind:isLoading bind:found={$filteredChannels.length} />
{#if isLoading} {#if isLoading}
<div <div
class="flex items-center justify-center w-full pt-1 pb-6 tracking-tight text-sm text-gray-500 dark:text-gray-400 font-mono" class="flex items-center justify-center w-full pt-1 pb-6 tracking-tight text-sm text-gray-500 dark:text-gray-400 font-mono"
@ -97,7 +98,7 @@
bind:country bind:country
bind:channels={groupedByCountry[country.code]} bind:channels={groupedByCountry[country.code]}
bind:hasQuery={$hasQuery} bind:hasQuery={$hasQuery}
></CountryItem> />
{/if} {/if}
{/each} {/each}
</section> </section>