Installation
We use NextJS - the react framework, which sets up everything automatically for you..
Getting Started
Go Template Directory.
-
The
Fixton
is a modernNextJs
/app
routing application.NextJs
runs onNodeJs
, you need to installNodeJs
first on your machine. -
Then you have to install the necessary package and open a terminal in the project directory.
# Install package
npm install
# run on development mode
npm run dev
- Ready for production build
# build command
npm run build
# run on production
npm start
If you run the last command, it will run your application on the 3000
port.
Congratulation!!
- How to edit:
Start editing from the
/src/app/page.tsx
file. The/src/app/page.tsx
file is the main entry file for the application./src/app
folder, where you get all the pages and APIs. The/src/components
folder is where you will find all the components. The/src/hooks
folder is where you will get all the hooks. The/src/lib
folder is where you will get all the utility files.
⚠️ Please do not use the demo imaged on your live application, use your own images. ⚠️