UI Update
This commit is contained in:
10
src/app/(panels)/suite/patient/chat/page.tsx
Normal file
10
src/app/(panels)/suite/patient/chat/page.tsx
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
"use client"
|
||||||
|
|
||||||
|
export default function Chat() {
|
||||||
|
return (
|
||||||
|
<div className="container mx-auto">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
@@ -37,8 +37,8 @@ const AudioTranscriber: React.FC = () => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div className="h-screen container mx-auto block items-center justify-center p-6">
|
||||||
<h1>Audio Transcription</h1>
|
<h1>Audio Transcription: </h1>
|
||||||
<input type="file" accept="audio/*" onChange={handleFileChange} />
|
<input type="file" accept="audio/*" onChange={handleFileChange} />
|
||||||
<button onClick={handleTranscription} disabled={loading}>
|
<button onClick={handleTranscription} disabled={loading}>
|
||||||
{loading ? "Transcribing..." : "Transcribe"}
|
{loading ? "Transcribing..." : "Transcribe"}
|
||||||
|
|||||||
Reference in New Issue
Block a user