···18181919</script>
20202121-<main>
2222- {#if showRepoStats}
2323- {#if slowPoke}
2424- <h2>Walking the repo via api calls</h2>
2525- {:else}
2626- <h2>Walking the repo via repo export</h2>
2727- {/if}
2828- {:else}
2929- <h1>Repo Walk Example</h1>
3030- <br>
3131- <p>Demo showing why you may rather export the users whole repo instead of walking it via api calls</p>
3232- <sub>Also shows how many records you have and how many of each kind if you're into that kind of thing...</sub>
3333- {/if}
3434- <div class="card">
2121+<main class="container mx-auto px-4 py-8 max-w-4xl">
2222+ <div class="text-center mb-8">
3523 {#if showRepoStats}
3636- <RepoStats did={did} pdsUrl={pdsUrl} slowPokeMode={slowPoke}/>
2424+ {#if slowPoke}
2525+ <h2 class="text-3xl font-bold text-primary">Walking the repo via api calls</h2>
2626+ {:else}
2727+ <h2 class="text-3xl font-bold text-primary">Walking the repo via repo export</h2>
2828+ {/if}
3729 {:else}
3838- <SearchForm resolvedResult={resolvedResult}/>
3030+ <h1 class="text-5xl font-bold mb-4">Repo Walk Example</h1>
3131+ <p class="text-lg mb-2">Demo showing why you may rather export the users whole repo instead of walking it via api calls</p>
3232+ <p class="text-sm opacity-70">Also shows how many records you have and how many of each kind if you're into that kind of thing...</p>
3933 {/if}
4034 </div>
41353636+ <div class="card bg-base-200 shadow-xl">
3737+ <div class="card-body">
3838+ {#if showRepoStats}
3939+ <RepoStats did={did} pdsUrl={pdsUrl} slowPokeMode={slowPoke}/>
4040+ {:else}
4141+ <SearchForm resolvedResult={resolvedResult}/>
4242+ {/if}
4343+ </div>
4444+ </div>
4245</main>
4343-4444-<style>
4545-4646-</style>