logged out chat modal, call to action

This commit is contained in:
2026-04-22 21:05:53 +02:00
parent 52e0a65113
commit 64bd5c429e
7 changed files with 75 additions and 45 deletions

View File

@@ -1,16 +1,8 @@
'use client'
import { Skeleton } from '~/components/ui/skeleton';
import ChatModal from './_components/ChatModal'
import { trpc } from '~/app/_trpc/Client'
import { useTimeLine } from '~/app/_providers/GsapProvicer';
export default function AssistantModalPage() {
const { data: session, error, isLoading } = trpc.chat.getSession.useQuery();
return (
<>
<ChatModal/>
{error && <div>{error.message}</div>}
{isLoading && <Skeleton />}
</>
<ChatModal/>
)
}