The Match Scheduler App is designed to allow users to manage and track the status of various sports matches. Users can add new upcoming matches with relevant details such as the teams, league, venue, and timer. Once the timer for an upcoming match reaches zero, the match will be marked as "Live" and displayed under live matches. This helps users keep track of both upcoming and live matches in real-time.
- Add New Match: Users can add new upcoming matches, including details like teams, league, venue, and a timer.
- Live Match Update: Matches are automatically moved to "Live" once the timer reaches zero. A notification is shown when the match becomes live.
- Local Storage: Matches are stored in the browser's local storage to persist the data across sessions.
- Responsive Design: The app is designed to be mobile-friendly and will adjust based on screen size.
- React: Used for building the user interface with state management via hooks (
useState
,useEffect
). - CSS: Used for styling the modal and match cards to create a responsive and modern design.
-
Add a Match: Click on the "Add Match" button, and a modal will open where you can enter the teams, league, venue, and a countdown timer.
-
Match Timer: The countdown timer for each upcoming match will decrement every second. Once the timer hits zero, the match will automatically transition to a "Live Match" and show a notification.
-
Match Categories:
- Upcoming Matches: These matches are displayed with the remaining time until they go live.
- Live Matches: Matches that have started (timer reaches zero) are shown under "Live Matches."
-
Local Storage: Matches are stored in the browser's local storage, so even if you refresh the page, your matches will persist.
- Timer Customization: Allow users to specify different timer intervals or automatic start times.
- Match Results: Add the ability to input results for matches once they have finished.
- User Authentication: Allow users to create accounts and save their match schedules securely.
Feel free to fork this repository, create a branch, and submit pull requests with improvements or bug fixes.