30 lines
958 B
TypeScript
30 lines
958 B
TypeScript
import { PatientForm } from '../components/patient-form';
|
|
import Link from 'next/link';
|
|
import { ChevronLeft } from 'lucide-react';
|
|
|
|
export default function NewPatientPage() {
|
|
return (
|
|
<div className="px-4 sm:px-6 lg:px-8 py-8">
|
|
{/* Header with back button */}
|
|
<div className="mb-8">
|
|
<Link
|
|
href="/epd/patients"
|
|
className="inline-flex items-center gap-2 text-sm text-slate-600 hover:text-slate-900 mb-4 transition-colors"
|
|
>
|
|
<ChevronLeft className="h-4 w-4" />
|
|
<span>Terug naar patiënten</span>
|
|
</Link>
|
|
<h1 className="text-2xl font-bold text-slate-900">Nieuwe patiënt</h1>
|
|
<p className="text-sm text-slate-600 mt-1">
|
|
Voeg een nieuwe patiënt toe aan het systeem (FHIR)
|
|
</p>
|
|
</div>
|
|
|
|
{/* Patient Form */}
|
|
<div className="bg-white rounded-lg border border-slate-200 p-6">
|
|
<PatientForm />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|