singularity-forge/web/app/page.tsx
ace-pm 83feadb4e1 wip: rename gsd-parser dir + exports, fix native package.json
- packages/native/src/gsd-parser → packages/native/src/forge-parser
- Update packages/native/package.json exports: ./gsd-parser → ./forge-parser
- Update packages/native/src/index.ts imports: ./gsd-parser → ./forge-parser

Build in progress: native tsc output missing submodule dists (fd, text, image, etc).
This is a pre-existing issue with the build system, not caused by rebrand.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-15 14:22:21 +02:00

19 lines
420 B
TypeScript

"use client"
import dynamic from "next/dynamic"
const SFAppShell = dynamic(
() => import("@/components/sf/app-shell").then((mod) => mod.SFAppShell),
{
ssr: false,
loading: () => (
<div className="flex h-screen items-center justify-center bg-background text-sm text-muted-foreground">
Loading workspace
</div>
),
},
)
export default function Page() {
return <SFAppShell />
}