Documentation
Documentation
md 2/27/2023
Installation
After downloading the file from Themeforest, You will find SuperProps.zip file. Then unzip the
SuperProps.zip and run the following commands on SuperProps folder to get started with the project.
yarn
/app
/appmodern
/appclassic
/appminimal
/saas
/saasmodern
/saasclassic
/saasminimal
/saasminimal2
/hosting
/hostingmodern
/portfolio
/ride
/crypto
/cryptomodern
/charity
/interior
/agency
/agencymodern
/agencydigital
/saascreative
/fooddelivery
/saasappdark
/appcreative2
/webapp
/webappminimal
/webappcreative
/agencyformal
/agencyclassic
/appBlack
1/4
README.md 2/27/2023
...
Folder Structure
/packages
/landing [NextJs version of the project]
To start the server for nextjs you have to run yarn nextjs-dev and the server will start on
locahost:3000.
2/4
README.md 2/27/2023
Explaining Containers
In the containers directory you will get folder for our every template. If you want to use App template.
Then in the App directory you will get folders containing different sections of the template like Banner,
Footer, Testimonial, Navbar etc.
yarn next-build
yarn next-start
We removed the next-export support from our template and we recommend to use next-build and
next-start to run our template.
But if you want to use ‘next-exportʼ, then at first please go to packages->landing->next.config.js and
replace the code with
const nextConfig = { images: { domains: ['pbs.twimg.com'], loader: 'akamai', path: '', }, };
Then , run next build && next export in your terminal.
Running with Docker
To run the SuperProps Next.js app in docker
yarn next-export
docker build -t superprops/landing-next -f ./packages/landing/Dockerfile .
docker run -it -p 3000:3000 superprops/landing-next:latest
Open http://localhost:3000
Deployment Support
3/4
README.md 2/27/2023
vercel.com
NextJs
For deploying nextjs on vercel.com go to packages/landing. Now run below command .
vercel
yarn deploy
After running the above command go to /landing folder. You will find a out folder there. Drag and drop
this out folder on netlify sites tab. Now after finishing the upload you are ready to go.
4/4