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.
8 lines
144 B
TypeScript
8 lines
144 B
TypeScript
"use client";
|
|
|
|
import { WorkspaceShell } from "./workspace/workspace-content";
|
|
|
|
export default function Home() {
|
|
return <WorkspaceShell />;
|
|
}
|