EasyAppointment is a responsive doctor appointment scheduling app built with React and Tailwind CSS. It offers calendar views, appointment booking, and notifications — ideal for clinics or healthcare providers.
git clone https://github.com/your-username/doctor-appointment-system.git
cd doctor-appointment-system
npm install
npm run dev
EasyAppointment/
├── src/
│ ├── components/
│ │ ├── AppointmentItem.jsx
│ │ ├── AppointmentModal.jsx
│ │ ├── CalendarLegend.jsx
│ │ ├── DayView.jsx
│ │ ├── Header.jsx
│ │ ├── MonthView.jsx
│ │ ├── Notification.jsx
│ │ ├── Overview.jsx
│ │ ├── Sidebar.jsx
│ │ ├── ViewToggle.jsx
│ │ └── WeekView.jsx
│ ├── context/
│ │ └── AppointmentContext.jsx
│ ├── utils/
│ ├── App.jsx
│ ├── index.css
│ └── main.jsx
├── .gitignore
├── eslint.config.js
├── index.html
├── package-lock.json
├── package.json
├── postcss.config.js
├── tailwind.config.js
├── vercel.json
├── vite.config.js
└── README.md