├── .eslintrc.json ├── .gitignore ├── .vscode └── settings.json ├── README.md ├── app ├── admin │ └── page.tsx ├── api │ ├── checkEmail │ │ └── route.ts │ ├── checkPhone │ │ └── route.ts │ ├── patients │ │ └── [patientId] │ │ │ └── page.ts │ └── sentry-example-api │ │ └── route.ts ├── global-error.tsx ├── globals.css ├── layout.tsx ├── loading.tsx ├── page.tsx ├── patients │ ├── [userId] │ │ ├── new-appointment │ │ │ ├── page.tsx │ │ │ └── success │ │ │ │ └── page.tsx │ │ └── register │ │ │ └── page.tsx │ └── find-by-email │ │ └── page.tsx └── sentry-example-page │ └── page.tsx ├── components.json ├── components ├── AdminLink.tsx ├── AppointmentModal.tsx ├── CustomFormField.tsx ├── FileUploader.tsx ├── GlobalLoading.tsx ├── GlobalLoadingProvider.tsx ├── NewAppointmentButton.tsx ├── PasskeyModal.tsx ├── PatientModal.tsx ├── StatCard.tsx ├── StatusBadge.tsx ├── SubmitButton.tsx ├── ThemeProvider.tsx ├── forms │ ├── AppointmentForm.tsx │ ├── PatientForm.tsx │ └── RegisterForm.tsx ├── table │ ├── DataTable.tsx │ └── columns.tsx └── ui │ ├── alert-dialog.tsx │ ├── button.tsx │ ├── checkbox.tsx │ ├── command.tsx │ ├── dialog.tsx │ ├── form.tsx │ ├── input-otp.tsx │ ├── input.tsx │ ├── label.tsx │ ├── popover.tsx │ ├── radio-group.tsx │ ├── select.tsx │ ├── separator.tsx │ ├── table.tsx │ └── textarea.tsx ├── constants └── index.ts ├── instrumentation.ts ├── lib ├── actions │ ├── appointment.actions.ts │ └── patient.actions.ts ├── appwrite.config.ts ├── utils.ts └── validation.ts ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── public ├── 10386c2cece606645c9e16fd9f9c12ca.html ├── assets │ ├── gifs │ │ └── success.gif │ ├── icons │ │ ├── appointments.svg │ │ ├── arrow.svg │ │ ├── calendar.svg │ │ ├── cancelled.svg │ │ ├── check-circle.svg │ │ ├── check.svg │ │ ├── close.svg │ │ ├── email.svg │ │ ├── loader.svg │ │ ├── logo-full.svg │ │ ├── logo-icon.svg │ │ ├── pending.svg │ │ ├── upload.svg │ │ └── user.svg │ └── images │ │ ├── admin.png │ │ ├── appointment-img.png │ │ ├── appointments-bg.png │ │ ├── cancelled-bg.png │ │ ├── dr-cameron.png │ │ ├── dr-cruz.png │ │ ├── dr-green.png │ │ ├── dr-lee.png │ │ ├── dr-livingston.png │ │ ├── dr-peter.png │ │ ├── dr-powell.png │ │ ├── dr-remirez.png │ │ ├── dr-sharma.png │ │ ├── onboarding-img.webp │ │ ├── pending-bg.png │ │ └── register-img.png └── favicon.ico ├── sentry.client.config.ts ├── sentry.edge.config.ts ├── sentry.server.config.ts ├── tailwind.config.ts ├── tsconfig.json └── types ├── appwrite.types.ts └── index.d.ts /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/README.md -------------------------------------------------------------------------------- /app/admin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/app/admin/page.tsx -------------------------------------------------------------------------------- /app/api/checkEmail/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/app/api/checkEmail/route.ts -------------------------------------------------------------------------------- /app/api/checkPhone/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/app/api/checkPhone/route.ts -------------------------------------------------------------------------------- /app/api/patients/[patientId]/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/app/api/patients/[patientId]/page.ts -------------------------------------------------------------------------------- /app/api/sentry-example-api/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/app/api/sentry-example-api/route.ts -------------------------------------------------------------------------------- /app/global-error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/app/global-error.tsx -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/app/loading.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/patients/[userId]/new-appointment/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/app/patients/[userId]/new-appointment/page.tsx -------------------------------------------------------------------------------- /app/patients/[userId]/new-appointment/success/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/app/patients/[userId]/new-appointment/success/page.tsx -------------------------------------------------------------------------------- /app/patients/[userId]/register/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/app/patients/[userId]/register/page.tsx -------------------------------------------------------------------------------- /app/patients/find-by-email/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/app/patients/find-by-email/page.tsx -------------------------------------------------------------------------------- /app/sentry-example-page/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/app/sentry-example-page/page.tsx -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/components.json -------------------------------------------------------------------------------- /components/AdminLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/components/AdminLink.tsx -------------------------------------------------------------------------------- /components/AppointmentModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/components/AppointmentModal.tsx -------------------------------------------------------------------------------- /components/CustomFormField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/components/CustomFormField.tsx -------------------------------------------------------------------------------- /components/FileUploader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/components/FileUploader.tsx -------------------------------------------------------------------------------- /components/GlobalLoading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/components/GlobalLoading.tsx -------------------------------------------------------------------------------- /components/GlobalLoadingProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/components/GlobalLoadingProvider.tsx -------------------------------------------------------------------------------- /components/NewAppointmentButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/components/NewAppointmentButton.tsx -------------------------------------------------------------------------------- /components/PasskeyModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/components/PasskeyModal.tsx -------------------------------------------------------------------------------- /components/PatientModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/components/PatientModal.tsx -------------------------------------------------------------------------------- /components/StatCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/components/StatCard.tsx -------------------------------------------------------------------------------- /components/StatusBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/components/StatusBadge.tsx -------------------------------------------------------------------------------- /components/SubmitButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/components/SubmitButton.tsx -------------------------------------------------------------------------------- /components/ThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/components/ThemeProvider.tsx -------------------------------------------------------------------------------- /components/forms/AppointmentForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/components/forms/AppointmentForm.tsx -------------------------------------------------------------------------------- /components/forms/PatientForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/components/forms/PatientForm.tsx -------------------------------------------------------------------------------- /components/forms/RegisterForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/components/forms/RegisterForm.tsx -------------------------------------------------------------------------------- /components/table/DataTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/components/table/DataTable.tsx -------------------------------------------------------------------------------- /components/table/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/components/table/columns.tsx -------------------------------------------------------------------------------- /components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/components/ui/command.tsx -------------------------------------------------------------------------------- /components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/components/ui/dialog.tsx -------------------------------------------------------------------------------- /components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/components/ui/form.tsx -------------------------------------------------------------------------------- /components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/components/ui/popover.tsx -------------------------------------------------------------------------------- /components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/components/ui/select.tsx -------------------------------------------------------------------------------- /components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/components/ui/separator.tsx -------------------------------------------------------------------------------- /components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/components/ui/table.tsx -------------------------------------------------------------------------------- /components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/components/ui/textarea.tsx -------------------------------------------------------------------------------- /constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/constants/index.ts -------------------------------------------------------------------------------- /instrumentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/instrumentation.ts -------------------------------------------------------------------------------- /lib/actions/appointment.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/lib/actions/appointment.actions.ts -------------------------------------------------------------------------------- /lib/actions/patient.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/lib/actions/patient.actions.ts -------------------------------------------------------------------------------- /lib/appwrite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/lib/appwrite.config.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /lib/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/lib/validation.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/10386c2cece606645c9e16fd9f9c12ca.html: -------------------------------------------------------------------------------- 1 | twilio-domain-verification=10386c2cece606645c9e16fd9f9c12ca -------------------------------------------------------------------------------- /public/assets/gifs/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/public/assets/gifs/success.gif -------------------------------------------------------------------------------- /public/assets/icons/appointments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/public/assets/icons/appointments.svg -------------------------------------------------------------------------------- /public/assets/icons/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/public/assets/icons/arrow.svg -------------------------------------------------------------------------------- /public/assets/icons/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/public/assets/icons/calendar.svg -------------------------------------------------------------------------------- /public/assets/icons/cancelled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/public/assets/icons/cancelled.svg -------------------------------------------------------------------------------- /public/assets/icons/check-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/public/assets/icons/check-circle.svg -------------------------------------------------------------------------------- /public/assets/icons/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/public/assets/icons/check.svg -------------------------------------------------------------------------------- /public/assets/icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/public/assets/icons/close.svg -------------------------------------------------------------------------------- /public/assets/icons/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/public/assets/icons/email.svg -------------------------------------------------------------------------------- /public/assets/icons/loader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/public/assets/icons/loader.svg -------------------------------------------------------------------------------- /public/assets/icons/logo-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/public/assets/icons/logo-full.svg -------------------------------------------------------------------------------- /public/assets/icons/logo-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/public/assets/icons/logo-icon.svg -------------------------------------------------------------------------------- /public/assets/icons/pending.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/public/assets/icons/pending.svg -------------------------------------------------------------------------------- /public/assets/icons/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/public/assets/icons/upload.svg -------------------------------------------------------------------------------- /public/assets/icons/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/public/assets/icons/user.svg -------------------------------------------------------------------------------- /public/assets/images/admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/public/assets/images/admin.png -------------------------------------------------------------------------------- /public/assets/images/appointment-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/public/assets/images/appointment-img.png -------------------------------------------------------------------------------- /public/assets/images/appointments-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/public/assets/images/appointments-bg.png -------------------------------------------------------------------------------- /public/assets/images/cancelled-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/public/assets/images/cancelled-bg.png -------------------------------------------------------------------------------- /public/assets/images/dr-cameron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/public/assets/images/dr-cameron.png -------------------------------------------------------------------------------- /public/assets/images/dr-cruz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/public/assets/images/dr-cruz.png -------------------------------------------------------------------------------- /public/assets/images/dr-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/public/assets/images/dr-green.png -------------------------------------------------------------------------------- /public/assets/images/dr-lee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/public/assets/images/dr-lee.png -------------------------------------------------------------------------------- /public/assets/images/dr-livingston.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/public/assets/images/dr-livingston.png -------------------------------------------------------------------------------- /public/assets/images/dr-peter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/public/assets/images/dr-peter.png -------------------------------------------------------------------------------- /public/assets/images/dr-powell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/public/assets/images/dr-powell.png -------------------------------------------------------------------------------- /public/assets/images/dr-remirez.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/public/assets/images/dr-remirez.png -------------------------------------------------------------------------------- /public/assets/images/dr-sharma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/public/assets/images/dr-sharma.png -------------------------------------------------------------------------------- /public/assets/images/onboarding-img.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/public/assets/images/onboarding-img.webp -------------------------------------------------------------------------------- /public/assets/images/pending-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/public/assets/images/pending-bg.png -------------------------------------------------------------------------------- /public/assets/images/register-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/public/assets/images/register-img.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /sentry.client.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/sentry.client.config.ts -------------------------------------------------------------------------------- /sentry.edge.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/sentry.edge.config.ts -------------------------------------------------------------------------------- /sentry.server.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/sentry.server.config.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/appwrite.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/types/appwrite.types.ts -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnobt78/HealthCare-Doctor-Appointment-Management-System--NextJS-FullStack/HEAD/types/index.d.ts --------------------------------------------------------------------------------