Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1193000960 | |||
| 33dc3e2014 | |||
| 15ccc492ce | |||
| af36a8ae11 | |||
| 2732e166ed |
@@ -3,7 +3,7 @@
|
|||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||||
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
|
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
|
||||||
import { Calendar, Users, FileText } from "lucide-react";
|
import { Calendar, Users, FileText, UserPlus, GraduationCap } from "lucide-react";
|
||||||
|
|
||||||
export default function DoctorDashboardPage() {
|
export default function DoctorDashboardPage() {
|
||||||
return (
|
return (
|
||||||
@@ -20,7 +20,7 @@ export default function DoctorDashboardPage() {
|
|||||||
<div className="pt-32 pb-20">
|
<div className="pt-32 pb-20">
|
||||||
<FeatureBorderGlow
|
<FeatureBorderGlow
|
||||||
title="Doctor Dashboard"
|
title="Doctor Dashboard"
|
||||||
description="Manage your patients and consultations."
|
description="Manage your patients, medical staff, and educational resources."
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -28,6 +28,8 @@ export default function DoctorDashboardPage() {
|
|||||||
{ icon: Calendar, title: "Upcoming Consultations", description: "View your schedule for the day." },
|
{ icon: Calendar, title: "Upcoming Consultations", description: "View your schedule for the day." },
|
||||||
{ icon: Users, title: "Patient Records", description: "Access secure patient history." },
|
{ icon: Users, title: "Patient Records", description: "Access secure patient history." },
|
||||||
{ icon: FileText, title: "Prescription Pad", description: "Issue and track digital prescriptions." },
|
{ icon: FileText, title: "Prescription Pad", description: "Issue and track digital prescriptions." },
|
||||||
|
{ icon: UserPlus, title: "Manage Doctors", description: "Create and manage accounts for fellow doctors." },
|
||||||
|
{ icon: GraduationCap, title: "Student Management", description: "Oversee student accounts and provide credentials." },
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ContactForm from '@/components/form/ContactForm';
|
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||||
|
import { LogIn } from "lucide-react";
|
||||||
|
|
||||||
export default function LoginPage() {
|
export default function LoginPage() {
|
||||||
return (
|
return (
|
||||||
@@ -17,13 +18,17 @@ export default function LoginPage() {
|
|||||||
brandName="MediConnect"
|
brandName="MediConnect"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div className="min-h-screen pt-24 flex items-center justify-center">
|
<div className="pt-32 pb-20">
|
||||||
<ContactForm
|
<ContactSplitForm
|
||||||
title="Patient Login"
|
title="Welcome Back"
|
||||||
description="Sign in to your secure portal."
|
description="Sign in to your patient portal to manage your health records and appointments securely."
|
||||||
tag="Login"
|
inputs={[
|
||||||
buttonText="Login"
|
{ name: "email", type: "email", placeholder: "Email Address", required: true },
|
||||||
|
{ name: "password", type: "password", placeholder: "Password", required: true }
|
||||||
|
]}
|
||||||
|
buttonText="Sign In"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
|
mediaPosition="right"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
|
|||||||
Reference in New Issue
Block a user