Convex-only Slice 1: clients talk to Convex, Flue is a private worker (#20)

This commit is contained in:
2026-07-27 16:03:36 +00:00
parent cc47007fa9
commit cb7484912c
141 changed files with 1547 additions and 17812 deletions

View 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 />;
}