syntoJS/
├── node modules
├── pages
| ├── api/
| ├── components/
| ├── app.js
| ├── document.js
| ├── index.js
├── public/
| ├── assets/
| ├── favicon.ico
| ├── next.svg
| └── vercel.svg
├── shared/
| | ├── data/
| | ├── firbase/
| | ├── layout-components/
| | └── redux
├── styles/
| └── global.scss
├── .eslintrc.json
├── jsconfig.json
├── next.config.js
├── package.json
├── postcss.config
├── README
└── tailwind.config
Synto - NextJs Tailwind CSS Admin Dashboard Template /
: Root template
folder contain all nextjs component(Structure page),
css, scss, images
and other files.
public/
: static assets
living in the public/ directory. For example, if we save a file in
public/abc.txt , then it will be served us as-is at
https://domain.com/abc.txt .
pages/
: this file contains all the file in the template.
assets/
: A folder where you can put images, css, json
data anything else to be
copied wholesale when you build your application..
data/
: This file contains all the common data
files in the templatecomponents/
: This file contains all the components data.
layout-components/
: layout folder is contains the layout
structure of your template.
package.json
: npm configuration listing the third
party packages your project uses.
You can also add your own custom scripts
here.