Ynex - Source File Structure

Folder Structure
public/
						├── assets/
						├── |-- css/
						|   |-- |-- icons.css
						|   |-- |-- icons.css.map
						|   |-- |-- styles.css
						|   |-- |-- styles.css.map
						├── |-- icon-fonts/
						|   |-- |-- bootstrap-icons/
						|   |-- |-- boxicons/
						|   |-- |-- feather/
						|   |-- |-- line-awesome/
						|   |-- |-- Remixicons/
						|   |-- |-- tabler-icons/
						├── |-- images/
						├── |-- libs/
						├── |-- scss/
						├── |-- video/
						|-- shared/
						|   |-- |-- data/
						|   |-- |-- firebase/
						|   |-- |-- layout-components/
						|   |-- |-- redux/
						├── src/
						|   |-- pages/
						|   |-- |-- api/
						|   |-- |-- components/
						|   |-- |--   |-- advanceui/
						|   |-- |--   |-- apps/
						|   |-- |--   |-- authentication/
						|   |-- |--   |-- charts/
						|   |-- |--   |-- dashboard/
						|   |-- |--   |-- error/
						|   |-- |--   |-- forms/
						|   |-- |--   |-- icons/
						|   |-- |--   |-- maps/
						|   |-- |--   |-- pages/
						|   |-- |--   |-- tables/
						|   |-- |--   |-- tasks/
						|   |-- |--   |-- uielements/
						|   |-- |--   |-- utilities/
						|   |-- |--   |-- widgets/
						|   |-- |-- api.tsx
						|   |-- |-- document.tsx
						|   |-- |-- index.tsx
						|-- styles
						|   |-- |-- global.scss/
						├── .eslintrc.json
						├── next.config.json
						├── package-lock.json
						├── package.json
						├── README.md
						├── tsconfig.json


						   
					
Folders Description
  • Ynex – NextJS Admin Template / : Root template folder contain all Nextjs, tsx, css, scss, images and other files.
    • assets/ : Folder contain all the Ynex Template assets which has css, scss, and images.
      • css/: Folder contain assets which has complete styles.
        • icons.css : It has all template icon links are importated.
        • styles.css : Main style sheet for template
      • icon-fonts/: Folder contain all types of icons which is used in this template.
      • images/ : Template images.
      • scss/ : Folder contain all pages scss files and all plugins scss files also included.
      • Video/ : Folder contains video used in this template.