feat: global css variables and app shell

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
M1ngdaXie
2026-03-26 14:15:55 -07:00
parent 814504db8c
commit 3f07963cb5
5 changed files with 51 additions and 304 deletions

View File

@@ -0,0 +1 @@
export default function BootScreen({ onComplete }: { onComplete: () => void }) { return <div onClick={onComplete}>Loading...</div>; }

View File

@@ -0,0 +1 @@
export default function Desktop() { return <div>Desktop</div>; }