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>
5 lines
112 B
TypeScript
5 lines
112 B
TypeScript
import ChatPage from "@/components/pages/chat-page";
|
|
|
|
export default function Page() {
|
|
return <ChatPage />;
|
|
}
|