Luxury Skin, Timeless Glow
- Download and install the latest version of NodeJS from: Download NodeJS
- Clone this repository using the following command:
git clone https://github.com/NjohPrince/ejaralux-frontend.git- Open cloned project folder on your code editor and install the project dependencies by running:
npm install-
Create a
.env.localfile and paste the content fromenv.examplefile located at the root of the project folder. -
Start the debvelopment server as follows:
npm run dev- Demo Link: Access here
.
├── .next
├── app
│ ├── auth
│ │ ├── change-password
│ │ ├── forgot-password
│ │ ├── login
│ │ └── register
│ ├── cart
│ ├── dashboard
│ └── products
│ ├── [category]
│ └── [slug]
├── modules
│ ├── [module/feature]
│ │ ├── components
│ │ │ ├── atoms
│ │ │ ├── molecules
│ │ │ ├── organisms
│ │ │ └── templates
│ │ ├── lib
│ │ │ ├── hooks
│ │ │ ├── utils
│ │ │ └── validations
│ │ ├── services
│ │ └── types
├── node_modules
├── public
├── redux
├── shared
│ ├── components
│ │ ├── atoms
│ │ ├── molecules
│ │ ├── organisms
│ │ └── templates
│ ├── lib
│ │ ├── hooks
│ │ ├── utils
│ │ └── validations
│ ├── services
│ └── types
.