multica/apps/web/app/page.tsx
Naiyuan Qing e3643514d4 refactor(web): move sidebar layout shell to layout.tsx
Lift AppSidebar, SidebarInset and SidebarTrigger into the root layout
so page.tsx only contains page-specific content.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-30 21:09:06 +08:00

5 lines
97 B
TypeScript

import { Chat } from "./components/chat";
export default function Page() {
return <Chat />;
}