multica/apps/web/app/page.tsx
Naiyuan Qing 7cb9788bed feat(web): add ChatPage with DevicePairing and ChatView
New page architecture: ChatPage composes useGatewayConnection + DevicePairing
(QR scan/paste with connection status) + ChatView (messages, error banner,
input). Decoupled from Zustand stores, fully props-driven.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-05 14:43:59 +08:00

5 lines
112 B
TypeScript

import ChatPage from "@/components/pages/chat-page";
export default function Page() {
return <ChatPage />;
}