Floder Sturcture

Folder Structure


						 src/
						 |   ├── assets/
						 |   |    ├── css
						 |   |    |    ├── icons.css
						 |   |    |    ├── plugins.map
						 |   |    |    ├── plugins.css.css
						 |   |    |    ├── plugins.css.map
						 |   |    |    ├── style.css
						 |   |    |    └── style.css.map
						 |   |    ├── img/
						 |   |    └── scss/
						 |   |        ├── bootstrap/
						 |   |        ├── custom/
						 |   |        ├── global/
						 |   |        ├── layout/
						 |   |        ├── lib/
						 |   |        ├── plugins/
						 |   |        ├── switcher/
						 |   |        ├── temp/
						 |   |        ├── util/
						 |   |        ├── plugins.scss
						 |   |        ├── _variables.scss
						 |   |        └── style.scss
						 |   ├── containers/
						 |   ├── components
						 |   ├── layout.tsx
						 |   ├── index.scss
						 |   └── main.jsx
						
						
						
Folders Description
  • Floder Sturcture / : Root template folder contain all react component(Structure page), css, scss, images and other files.
    • assets/ : Folder contain all the zem Template assets which has css, scss, and images.
      • css/: Folder contain assets which has complete styles.
        • styles.css : Main style sheet for template
      • iconfonts/: Folder contain all types of icons which is used in this template.
      • img/ : Template images.
      • scss/ : Folder contain all pages scss files and all plugins scss files also included.
      • index.scss : this scss file is known as a global scss file in your template.
    • gulpfile.js : SCSS to CSS tasks js file.
  • Note: When you run gulp command libs files are generated in dist folder and those files wont included in src folder.