Folder Structure

TailwindAdmin Angular Dashboard

              
📦
├── 📂 docs                                     > Contain template Documentation
├── 📂 figma-file                               > Contain Figma design files
├── 📂 packages                                 > Contain template static & generated assets
│   ├── 📂 main                                 > Main Demo files
│   │   ├── 📂 src                              > Contain template static & generated assets of main demo
│   │   │   ├── 📂 app
│   │   │   │   ├── 📂 components               > All components files
│   │   │   │   ├── 📂 icon                     > Icon module files
│   │   │   │   ├── 📂 layouts                  > All layout files
│   │   │   │   │   ├── 📂 blank                > Blank Layout files
│   │   │   │   │   └── 📂 full                 > Full Layout files
│   │   │   │   ├── 📂 pages                    > Contains all pages files
│   │   │   │   │   ├── 📂 apps                 > Contains all apps files
│   │   │   │   │   ├── 📂 authentication       > Contains all authentication page files
│   │   │   │   │   ├── 📂 charts               > Contains all charts files
│   │   │   │   │   ├── 📂 dashboards           > Contains all dashboard files
│   │   │   │   │   ├── 📂 datatable            > Contains all datatable files
│   │   │   │   │   ├── 📂 forms                > Contains all forms files
│   │   │   │   │   ├── 📂 front-pages          > Contains all front-pages files
│   │   │   │   │   ├── 📂 starter              > Contains all starter files
│   │   │   │   │   ├── 📂 tables               > Contains all tables files
│   │   │   │   │   ├── 📂 theme-pages          > Contains all theme pages files
│   │   │   │   │   ├── 📂 ui-components        > Contains all UI components files
│   │   │   │   │   ├── 📂 widgets              > Contains all widgets files
│   │   │   │   │   └── 📄 pages.routes.ts      > Used for routing
│   │   │   │   ├── 📂 pipe                     > Contains filter.pipe files
│   │   │   │   │   └── 📄 filter.pipe.ts       > Used for filtering
│   │   │   │   ├── 📂 services                 > Contains services files
│   │   │   │   ├── 📂 utils                    > Contains utility helper files
│   │   │   │   ├── 📄 app.component.html
│   │   │   │   ├── 📄 app.component.spec.ts
│   │   │   │   ├── 📄 app.component.ts
│   │   │   │   ├── 📄 app.config.ts
│   │   │   │   ├── 📄 config.ts
│   │   │   │   ├── 📄 app.routes.ts
│   │   │   │   └── 📄 material.module.ts
│   │   │   └── 📂 assets                       > Contains all assets for the project
│   │   │       ├── 📂 i18n                     > Language translation files
│   │   │       ├── 📂 images                   > Images (jpeg/png)
│   │   │       └── 📂 scss                     > Custom scss files
│   │   ├── 📄 angular.json                      
│   │   ├── 📄 package.json                      
│   │   ├── 📄 tsconfig.app.json                 
│   │   ├── 📄 tsconfig.json                     
│   │   └── 📄 tsconfig.spec.json                
│   ├── 📂 authguard                             > Authguard Demo files
│   ├── 📂 dark                                  > Dark Demo files
│   ├── 📂 horizontal                            > Horizontal Demo files
│   ├── 📂 minisidebar                           > Minisidebar Demo files
│   ├── 📂 rtl                                   > RTL Demo files
│   └── 📂 starterkit                            > Starterkit to get started with the project