#Live Demo https://my-htg1p79uh-elisonks-projects.vercel.app/
A modern React application built with Create React App, featuring a component-based architecture and routing capabilities.
capstone/
├── public/ # Static files
├── src/ # Source code
│ ├── components/ # Reusable React components
│ ├── utils/ # Utility functions and helpers
│ ├── App.js # Main application component
│ └── index.js # Application entry point
└── package.json # Project dependencies and scripts
- Built with React 19
- React Router for navigation
- Component-based architecture
- Testing setup with Jest and React Testing Library
- Node.js (v14 or higher)
- npm (v6 or higher)
- Clone the repository
- Install dependencies:
cd capstone npm install - Start the development server:
The application will be available at http://localhost:3000
npm start
npm start- Runs the app in development modenpm test- Launches the test runnernpm run build- Builds the app for productionnpm run eject- Ejects from Create React App (one-way operation)
The project uses modern React features and follows best practices for component organization. Key features include:
- React Router for client-side routing
- Component-based architecture for reusability
- Utility functions for common operations
- Testing setup for component validation
To create a production build:
npm run buildThis will create an optimized build in the build directory, ready for deployment.