openclaw/apps/web/app/page.tsx
kumarabhirup 1c21b039fc
refactor(web): consolidate workspace onto root route with URL state machine
Move the workspace shell from /workspace to / and introduce a typed URL state codec (parseUrlState/serializeUrlState) for deep-linkable workspace params. Legacy /workspace URLs are still recognized for backward compatibility.
2026-03-05 19:09:29 -08:00

8 lines
144 B
TypeScript

"use client";
import { WorkspaceShell } from "./workspace/workspace-content";
export default function Home() {
return <WorkspaceShell />;
}