A beautiful and responsive Todo List application built with React, using the Context API for state management, styled with Tailwind CSS, and enhanced with dark mode and localStorage persistence.
- ✅ Add, update, complete, and delete todos
- 🌙 Dark Mode toggle with persistent theme using
localStorage - 💾 Todo list is saved across sessions using
localStorage - 🎨 Styled with Tailwind CSS v4.1 and supports responsive design
- ⚙️ Built with React functional components and the Context API
src/
│
├── components/
│ ├── TodoForm.jsx
│ └── TodoItem.jsx
│
├── contexts/
│ ├── index.js
│ └── TodoContext.js
├── App.jsx
├── App.css
├── index.css
└── main.jsx
