https://friendly-sunshine-3be66a.netlify.app/
Ensure the following software is installed:
Node.js (v14 or later) – Download Node.js npm (Node Package Manager) – Comes with Node.js. Steps to Set Up and Run Locally Clone the Repository Clone the project to your local machine using Git:
git clone <repository_url> Replace <repository_url> with the URL of your repository.
Navigate to the Project Directory
cd frontend-assignment Install Dependencies Install the required dependencies listed in package.json using npm:
npm install Start the Development Server Start the application in development mode:
npm start This will launch the React application in your default browser at:
http://localhost:3000 Build for Production To create an optimized production build:
npm run build The production-ready files will be available in the build/ directory.
Run Tests (Optional) If the project has test cases, you can execute them using:
Additional Notes React Version: The project uses React 19.0.0. Dependencies: Key dependencies include: react-router-dom for routing. lucide-react for icons. @testing-library/react for testing. Browser Compatibility: For production: Supports all modern browsers with >0.2% market share. For development: Optimized for the latest versions of Chrome, Firefox, and Safari.