feat: initial commit

This commit is contained in:
2026-08-21 15:22:17 +09:00
commit c65fff4dfd
94 changed files with 20244 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import { AppShell } from "@/components/layout/AppShell";
export default function DemoPage() {
const demoUser = {
id: "demo-user",
name: "Demo Explorer",
email: "demo@checkflow.local",
};
return <AppShell user={demoUser} isDemo={true} />;
}