Healthcare
Build a healthcare platform that streamlines patient registration, appointment scheduling, and medical records, and learn to implement complex forms and SMS notifications.
Install / Use
/learn @adrianhajdin/HealthcareREADME
📋 <a name="table">Table of Contents</a>
- 🤖 Introduction
- ⚙️ Tech Stack
- 🔋 Features
- 🤸 Quick Start
- 🕸️ Snippets (Code to Copy)
- 🔗 Assets
- 🚀 More
🚨 Tutorial
This repository contains the code corresponding to an in-depth tutorial available on our YouTube channel, <a href="https://www.youtube.com/@javascriptmastery/videos" target="_blank"><b>JavaScript Mastery</b></a>.
If you prefer visual learning, this is the perfect resource for you. Follow our tutorial to learn how to build projects like these step-by-step in a beginner-friendly manner!
<a href="https://youtu.be/lEflo_sc82g?feature=shared" target="_blank"><img src="https://github.com/sujatagunale/EasyRead/assets/151519281/1736fca5-a031-4854-8c09-bc110e3bc16d" /></a>
<a name="introduction">🤖 Introduction</a>
A healthcare patient management application that allows patients to easily register, book, and manage their appointments with doctors, featuring administrative tools for scheduling, confirming, and canceling appointments, along with SMS notifications, all built using Next.js.
If you're getting started and need assistance or face any bugs, join our active Discord community with over 34k+ members. It's a place where people help each other out.
<a href="https://discord.com/invite/n6EdbFJ" target="_blank"><img src="https://github.com/sujatagunale/EasyRead/assets/151519281/618f4872-1e10-42da-8213-1d69e486d02e" /></a>
<a name="tech-stack">⚙️ Tech Stack</a>
- Next.js
- Appwrite
- Typescript
- TailwindCSS
- ShadCN
- Twilio
<a name="features">🔋 Features</a>
👉 Register as a Patient: Users can sign up and create a personal profile as a patient.
👉 Book a New Appointment with Doctor: Patients can schedule appointments with doctors at their convenience and can book multiple appointments.
👉 Manage Appointments on Admin Side: Administrators can efficiently view and handle all scheduled appointments.
👉 Confirm/Schedule Appointment from Admin Side: Admins can confirm and set appointment times to ensure they are properly scheduled.
👉 Cancel Appointment from Admin Side: Administrators have the ability to cancel any appointment as needed.
👉 Send SMS on Appointment Confirmation: Patients receive SMS notifications to confirm their appointment details.
👉 Complete Responsiveness: The application works seamlessly on all device types and screen sizes.
👉 File Upload Using Appwrite Storage: Users can upload and store files securely within the app using Appwrite storage services.
👉 Manage and Track Application Performance Using Sentry: The application uses Sentry to monitor and track its performance and detect any errors.
and many more, including code architecture and reusability
<a name="quick-start">🤸 Quick Start</a>
Follow these steps to set up the project locally on your machine.
Prerequisites
Make sure you have the following installed on your machine:
Cloning the Repository
git clone https://github.com/adrianhajdin/healthcare.git
cd healthcare
Installation
Install the project dependencies using npm:
npm install
Set Up Environment Variables
Create a new file named .env.local in the root of your project and add the following content:
#APPWRITE
NEXT_PUBLIC_ENDPOINT=https://cloud.appwrite.io/v1
PROJECT_ID=
API_KEY=
DATABASE_ID=
PATIENT_COLLECTION_ID=
APPOINTMENT_COLLECTION_ID=
NEXT_PUBLIC_BUCKET_ID=
NEXT_PUBLIC_ADMIN_PASSKEY=111111
Replace the placeholder values with your actual Appwrite credentials. You can obtain these credentials by signing up on the Appwrite website.
Running the Project
npm run dev
Open http://localhost:3000 in your browser to view the project.
<a name="snippets">🕸️ Snippets</a>
<details> <summary><code>tailwind.config.ts</code></summary>import type { Config } from "tailwindcss";
const { fontFamily } = require("tailwindcss/defaultTheme");
const config = {
darkMode: ["class"],
content: [
"./pages/**/*.{ts,tsx}",
"./components/**/*.{ts,tsx}",
"./app/**/*.{ts,tsx}",
"./src/**/*.{ts,tsx}",
],
prefix: "",
theme: {
container: {
center: true,
padding: "2rem",
screens: {
"2xl": "1400px",
},
},
extend: {
colors: {
green: {
500: "#24AE7C",
600: "#0D2A1F",
},
blue: {
500: "#79B5EC",
600: "#152432",
},
red: {
500: "#F37877",
600: "#3E1716",
700: "#F24E43",
},
light: {
200: "#E8E9E9",
},
dark: {
200: "#0D0F10",
300: "#131619",
400: "#1A1D21",
500: "#363A3D",
600: "#76828D",
700: "#ABB8C4",
},
},
fontFamily: {
sans: ["var(--font-sans)", ...fontFamily.sans],
},
backgroundImage: {
appointments: "url('/assets/images/appointments-bg.png')",
pending: "url('/assets/images/pending-bg.png')",
cancelled: "url('/assets/images/cancelled-bg.png')",
},
keyframes: {
"accordion-down": {
from: { height: "0" },
to: { height: "var(--radix-accordion-content-height)" },
},
"accordion-up": {
from: { height: "var(--radix-accordion-content-height)" },
to: { height: "0" },
},
"caret-blink": {
"0%,70%,100%": { opacity: "1" },
"20%,50%": { opacity: "0" },
},
},
animation: {
"accordion-down": "accordion-down 0.2s ease-out",
"accordion-up": "accordion-up 0.2s ease-out",
"caret-blink": "caret-blink 1.25s ease-out infinite",
},
},
},
plugins: [require("tailwindcss-animate")],
} satisfies Config;
export default config;
</details>
<details>
<summary><code>app/globals.css</code></summary>
@tailwind base;
@tailwind components;
@tailwind utilities;
/* ========================================== TAILWIND STYLES */
@layer base {
/* Remove scrollbar */
.remove-scrollbar::-webkit-scrollbar {
width: 0px;
height: 0px;
border-radius: 0px;
}
.remove-scrollbar::-webkit-scrollbar-track {
background: transparent;
}
.remove-scrollbar::-webkit-scrollbar-thumb {
background: transparent;
border-radius: 0px;
}
.remove-scrollbar::-webkit-scrollbar-thumb:hover {
/* background: #1e2238; */
background: transparent;
}
}
@layer utilities {
/* ===== UTILITIES */
.sidebar {
@apply remove-scrollbar w-full max-w-72 flex-col overflow-auto bg-black-800 px-7 py-10;
}
.left-sidebar {
@apply hidden lg:flex;
}
.right-sidebar {
@apply hidden xl:flex;
}
.clip-text {
@apply bg-clip-text text-transparent;
}
.bg-image {
@apply bg-black-900 bg-light-rays bg-cover bg-no-repeat;
}
.header {
@apply text-32-bold md:text-36-bold;
}
.sub-header {
@apply text-18-bold md:text-24-bold;
}
.container {
@apply relative flex-1 overflow-y-auto px-[5%];
}
.sub-container {
@apply mx-auto flex size-full flex-col py-10;
}
.side-img {
@apply hidden h-full object-cover md:block;
}
.copyright {
@apply text-14-regular justify-items-end text-center text-dark-600 xl:text-left;
}
/* ==== SUCCESS */
.success-img {
@apply m-auto flex flex-1 flex-col items-center justify-between gap-10 py-10;
}
.request-details {
@apply flex w-full flex-col items-center gap-8 border-y-2 border-dark-400 py-8 md:w-fit md:flex-row;
}
/* ===== ADMIN */
.admin-header {
@apply sticky top-3 z-20 mx-3 flex items-center justify-between rounded-2xl bg-dark-200 px-[5%] py-5 shadow-lg xl:px-12;
}
.admin-main {
@apply flex flex-col items-center space-y-6 px-[5%] pb-12 xl:space-y-12 xl:px-12;
}
.admin-stat {
@apply flex w-full flex-col justify-between gap-5 sm:flex-row xl:gap-10;
}
/* ==== FORM */
.radio-group {
@apply flex h-full flex-1 items-center gap-2 rounded-md border border-dashed border-dark-500 bg-dark-400 p-3;
}
.checkbox-label {
@apply cursor-pointer text-sm font-medium text-dark-700 peer-disabled:cursor-not-allowed peer-disabled:opacity-70 md:leading-none;
}
/* ==== File Upload */
.file-upload {
@apply text-12-regular flex cursor-pointer flex-col items-center justify-center gap-3 rounded-md border border-dashed border-dark-500 bg-dark-400 p-5;
}
.file-upload_label {
@apply flex flex-col justify-center gap-2 text-c
Related Skills
FastGPT
27.5kFastGPT is a knowledge-based platform built on the LLMs, offers a comprehensive suite of out-of-the-box capabilities such as data processing, RAG retrieval, and visual AI workflow orchestration, letting you easily develop and deploy complex question-answering systems without the need for extensive setup or configuration.
onlook
24.9kThe Cursor for Designers • An Open-Source AI-First Design tool • Visually build, style, and edit your React App with AI
mastra
22.2kFrom the team behind Gatsby, Mastra is a framework for building AI-powered applications and agents with a modern TypeScript stack.
awesome-cursor-rules
79❇️ neatly composed rules for ai ides like cursor, windsurf, vscode microsoft github copilot, reliverse ai, etc. optimized for modern frontend development with next.js 15, react 19, typescript 5, tailwind 4, shadcn/ui, drizzle orm, better auth, polar, tanstack form, react query, etc.
