sync activity separately from regular sync

This commit is contained in:
Paul Miller
2023-06-05 17:50:46 -05:00
committed by Tony Giorgio
parent 9186da7fc6
commit 2d99da5245
7 changed files with 186 additions and 141 deletions

View File

@@ -35,20 +35,25 @@ export function WaitlistAlreadyIn() {
const [posts] = createResource("", postsFetcher);
return (
<main class='flex flex-col gap-4 sm:gap-4 py-8 px-4 max-w-xl mx-auto items-start drop-shadow-blue-glow'>
<a href="https://mutinywallet.com">
<img src={logo} class="h-10" alt="logo" />
</a>
<h1 class="text-4xl font-bold">You're on a list!</h1>
<h2 class="text-xl pr-4">
We'll message you when Mutiny Wallet is ready.
</h2>
<div class="px-4 sm:px-8 py-8 rounded-xl bg-half-black w-full">
<h2 class="text-sm font-semibold uppercase">Recent Updates</h2>
<Show when={!posts.loading} fallback={<div class="h-[10rem]"><LoadingSpinner big /></div>}>
<Notes notes={posts() && posts() || []} />
</Show>
</div>
</main>
<main class="flex flex-col gap-4 sm:gap-4 py-8 px-4 max-w-xl mx-auto items-start drop-shadow-blue-glow">
<a href="https://mutinywallet.com">
<img src={logo} class="h-10" alt="logo" />
</a>
<h1 class="text-4xl font-bold">You're on a list!</h1>
<h2 class="text-xl pr-4">We'll message you when Mutiny Wallet is ready.</h2>
<div class="px-4 sm:px-8 py-8 rounded-xl bg-half-black w-full">
<h2 class="text-sm font-semibold uppercase">Recent Updates</h2>
<Show
when={!posts.loading}
fallback={
<div class="h-[10rem]">
<LoadingSpinner big wide />
</div>
}
>
<Notes notes={(posts() && posts()) || []} />
</Show>
</div>
</main>
);
}