singularity-forge/web/app/page.tsx
2026-05-05 14:31:16 +02:00

19 lines
404 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 />;
}