A simple web application to track finished books. Built with Next.js and styled with Tailwind CSS.
- Add books with title, author, and finish date
- View list of finished books
- Delete books from your list
- Next.js - React framework
- Tailwind CSS - Utility-first CSS framework
- Node.js (version 14 or higher)
- npm (comes with Node.js)
-
Fill in the book details in the "Add New Book" form:
- Book Title
- Author
- Finish Date
-
Click "Add Book" to save the book to your list
- View all your finished books in the "My Finished Books" section
- Delete any book by clicking the delete icon next to it
- Books are automatically saved to your browser's localStorage
book-library/ ├── src/ │ ├── app/ │ │ ├── components/ │ │ │ ├── BookListCreate.jsx │ │ │ └── BookListRead.jsx │ │ ├── layout.js │ │ └── page.js ├── package.json └── README.md