Patient Chat Bot

This commit is contained in:
Sir Blob
2025-01-25 12:13:18 -05:00
parent 363da3d2f7
commit eb2816b4e5
4 changed files with 70 additions and 8 deletions

View File

@@ -1,10 +1,30 @@
"use client"
import * as React from "react"
import { Button } from "@/components/ui/button"
import { Message } from "@/components/panel-ui/patient/app-chat"
import { Input } from "@/components/ui/input"
import { Card, CardContent } from "@/components/ui/card"
export default function Chat() {
return (
<div className="container mx-auto">
<div className="grid gap-4">
<Card>
<CardContent className="space-y-4 p-4">
<div className="block items-center">
<Message avatarUrl="/vercel.svg" message="Hello, how can I assist you today?" sender="Dr. Smith" />
<Message avatarUrl="/vercel.svg" message="I have some questions about my medication." sender="You" />
</div>
<div className="flex items-center">
<Input id="message" placeholder="Type your message here..." className="flex-grow mx-0 rounded-none" />
<Button className="mx-0 rounded-none">Send</Button>
</div>
</CardContent>
</Card>
</div>
</div>
)
}
}