check number 5000

This commit is contained in:
Michael Freno
2025-12-19 16:20:44 -05:00
parent 7a3dc3fc17
commit e64fd84cba
2 changed files with 44 additions and 200 deletions

View File

@@ -159,8 +159,32 @@ function AppLayout(props: { children: any }) {
return (
<>
<div class="flex max-w-screen flex-row">
<Suspense fallback={<TerminalSplash />}>{props.children}</Suspense>
<Show when={!barsInitialized()}>
<div class="bg-base fixed inset-0 z-100">
<TerminalSplash />
</div>
</Show>
<div
class="flex max-w-screen flex-row"
style={{
opacity: barsInitialized() ? "1" : "0",
transition: "opacity 0.3s ease-in-out"
}}
>
<LeftBar />
<div
class="relative min-h-screen rounded-t-lg shadow-2xl"
style={{
width: `${centerWidth()}px`,
"margin-left": `${leftBarSize()}px`
}}
>
<Show when={barsInitialized()} fallback={<TerminalSplash />}>
<Suspense fallback={<TerminalSplash />}>{props.children}</Suspense>
</Show>
</div>
<RightBar />
</div>
</>
);