multica/apps/web/app/page.tsx
Naiyuan Qing 003bde460d fix(web): remove auth guard from home page
Home page (QR code scanning) does not require authentication.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-13 16:53:22 +08:00

5 lines
112 B
TypeScript

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