ui fixed
This commit is contained in:
@@ -167,25 +167,21 @@ export default function PatientsPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* File Upload Zone */}
|
{/* File Upload Zone */}
|
||||||
<div className="grid gap-4 md:grid-cols-4">
|
<div className="mb-8">
|
||||||
<div className="md:col-span-3">
|
<div className="flex items-center justify-between mb-4">
|
||||||
<Card>
|
<h2 className="text-xl font-medium text-gray-800">
|
||||||
<CardHeader className="flex flex-row items-center justify-between space-y-0 pb-2">
|
|
||||||
<CardTitle className="text-sm font-medium">
|
|
||||||
Upload Patient Document
|
Upload Patient Document
|
||||||
</CardTitle>
|
</h2>
|
||||||
<File className="h-4 w-4 text-muted-foreground" />
|
</div>
|
||||||
</CardHeader>
|
<Card>
|
||||||
<CardContent>
|
<CardContent className="p-6 space-y-6">
|
||||||
<FileUploadZone
|
<FileUploadZone
|
||||||
onFileUpload={handleFileUpload}
|
onFileUpload={handleFileUpload}
|
||||||
isUploading={isUploading}
|
isUploading={isUploading}
|
||||||
acceptedFileTypes="application/pdf"
|
acceptedFileTypes="application/pdf"
|
||||||
/>
|
/>
|
||||||
</CardContent>
|
|
||||||
</Card>
|
<div className="flex justify-end gap-4">
|
||||||
</div>
|
|
||||||
<div className="md:col-span-1 flex items-end">
|
|
||||||
<Button
|
<Button
|
||||||
className="w-full h-12 gap-2"
|
className="w-full h-12 gap-2"
|
||||||
disabled={!uploadedFile || isExtracting}
|
disabled={!uploadedFile || isExtracting}
|
||||||
@@ -204,6 +200,8 @@ export default function PatientsPage() {
|
|||||||
)}
|
)}
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Patients Table */}
|
{/* Patients Table */}
|
||||||
|
|||||||
Reference in New Issue
Block a user