This project is a React application created with Create React App. It provides a basic structure for building and deploying a React application.
To get started with the project, follow these steps:
- Clone the repository using
git clone https://github.com/your-username/your-repo-name.git
- Install the dependencies using
npm install
- Start the development server using
npm start
The project is structured as follows:
public
: This folder contains static assets that can be used by the application.public/images
containing all images used.public/icons
containing all icons used.
src
: This folder contains the source code for the application.- under
src
, 2 folders are createdsrc/pages
containing all pages injs
files.src/components
contains all components files [js
,css
].
- under
package.json
: This file contains metadata for the project, including dependencies and scripts.
The following scripts are available:
npm start
: Starts the development server on http://localhost:3000npm test
: Runs the test suite.npm run build
: Builds the application for production.npm run eject
: Ejects the project from Create React App.
To deploy the application, follow these steps:
- Build the application using
npm run build
- Deploy the built application to your preferred hosting platform.