Convex-only Slice 1: clients talk to Convex, Flue is a private worker (#20)
This commit is contained in:
16
repos/web/routes/standalone/chat/page.tsx
Normal file
16
repos/web/routes/standalone/chat/page.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import { StandaloneChatPage } from "@/components/standalone-chat/standalone-chat-page";
|
||||
|
||||
import type { Route } from "./+types/page";
|
||||
|
||||
export const meta = (_args: Route.MetaArgs) => [
|
||||
{
|
||||
content: "width=device-width, initial-scale=1, viewport-fit=cover",
|
||||
name: "viewport",
|
||||
},
|
||||
{ content: "Chat with Zopu", name: "description" },
|
||||
{ title: "Zopu Chat" },
|
||||
];
|
||||
|
||||
export default function Page() {
|
||||
return <StandaloneChatPage />;
|
||||
}
|
||||
Reference in New Issue
Block a user