Add loading indicator and hide TODO (#4)

This commit is contained in:
CodeF53 2024-01-30 17:17:29 -07:00 committed by GitHub
parent fe971ab1db
commit d3ec867618
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 12 additions and 9 deletions

View file

@ -1,4 +1,5 @@
<template>
<NuxtLoadingIndicator />
<Background />
<NuxtLayout>
<NuxtPage />

View file

@ -18,15 +18,17 @@ definePageMeta({ layout: 'home' })
<Links />
</main>
</div>
<div>
<h2>TODO:</h2>
<ul>
<li>background: move render to worker thread</li>
<li>portfolio sorting, filtering</li>
<li>self-host blogs</li>
<li>duplicate site, but with real name and picture</li>
</ul>
</div>
<DevOnly>
<div>
<h2>TODO:</h2>
<ul>
<li>background: move render to worker thread</li>
<li>portfolio sorting, filtering</li>
<li>self-host blogs</li>
<li>duplicate site, but with real name and picture</li>
</ul>
</div>
</DevOnly>
</template>
<style lang="scss">