This commit is contained in:
aguitauwu
2026-02-11 17:13:13 -06:00
parent 5b6f6bea7b
commit 8c752c025a
11 changed files with 61 additions and 344 deletions

View File

@@ -1,15 +1,7 @@
"use client";
import { useAuth } from "@/lib/auth-context";
import { TokenScreen } from "@/components/token-screen";
import { ChatWindow } from "@/components/chat-window";
export default function Home() {
const { isAuthenticated } = useAuth();
if (!isAuthenticated) {
return <TokenScreen />;
}
return <ChatWindow />;
}