The project is created in the React.js framework, which needs node.js, in order to run. The syntax used for styles is SCSS.
First, you need to check if you have node, and yarn installed, therefore, open a terminal, and run the following commands:
node -v
and
yarn -v
Before installing the main packages, we must update the node package manager (npm) that came with node.js to the latest version. In the terminal, run the following command:
npm update npm
After you have downloaded the files on your computer, you have to add the node_modules used for development. In the terminal, navigate to the project direcytory, and run:
npm install
or
yarn
After installing, you must go to the terminal, back in the project directory, and run:
yarn start
This command will start running the app in the development mode. Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
In case you don't have everything installed, you can find the installer package for node here:
For yarn, you must open a terminal, and run the following command, in the project folder:
npm install yarn --save-dev
- Twitter Bootstrap 5 - used for styles, and animations
The project uses React Helmet to set proper title, and meta tags for each page
The project uses node-sass-chokidar for SCSS compiling
public - images - scripts - style → scss → partials src - components - pages .gitignore package.json package-lock.json README.md yarn.lock
Code carefully!
The code belongs to its owner
Anyone can use it for documentation or comparison purposes