File Structure

Here is the general file structure of the template:

File Structure
    QLOUD-ANGULAR/
    src/
    │   ├── app/
    │   │   ├── components/
    │   │   │   ├── landing-pages/
    │   │   │   │   ├── partials/
    │   │   │   │   │   ├──back-To-Top
    │   │   │   │   │   ├──footer
    │   │   │   │   │   ├──header
    │   │   │   │   ├── widgets/
    │   │   │   │   │   └── All Widgets file
    │   │   │   ├── components.modules.ts
    │   │   ├── layouts/
    │   │   │   ├── landing-modules/
    │   │   │   │   ├── index/
    │   │   │   │   │   ├── index.component.html
    │   │   │   │   │   ├── index.component.ts
    │   │   │   │   ├── landing-modules-routing.module.ts
    │   │   │   │   ├── landing-modules.module.ts
    │   │   │   ├── layouts-routing.module.ts
    │   │   │   ├── layouts.module.ts
    │   │   ├── views/
    │   │   │   ├── blog/
    │   │   │   ├── domain/
    │   │   │   ├── hosting/
    │   │   │   ├── pages/
    │   │   │   ├── portfolio/
    │   │   │   ├── views-routing.module.ts
    │   │   │   ├── views.module.ts
    │   │   ├── app.component.html
    │   │   ├── app.component.scss
    │   │   ├── app.component.spec.ts
    │   │   ├── app.component.ts
    │   │   ├── app.config.server.ts
    │   │   ├── app.config.ts
    │   │   ├── app.routes.ts
    │   ├── assets/
    │   │   ├── images/
    │   │   │   └── All Images
    │   │   ├── scss/
    │   │   │   ├── bootstrap/
    │   │   │   ├── custom/
    │   │   │   ├── qloud-design-system/
    │   │   │   │   ├── components/
    │   │   │   │   ├── helper/
    │   │   │   │   ├── plugins/
    │   │   │   │   ├── variables/
    │   │   │   │   ├── _root.scss
    │   │   │   │   ├── _variables-dark.scss
    │   │   │   │   ├── _variables.scss
    │   │   │   ├── custom-scss.scss
    │   │   │   ├── custom.scss
    │   │   │   ├── qloud.scss
    │   │   ├── vendor/
    │   │   │   └── All Vendor Css
    │   │   └── .gitkeep
    │   ├── favicon.ico
    │   ├── index.html
    │   ├── main.server.ts
    │   ├── main.ts
    │   ├── styles.scss
    └── .editorconfig
    └── .gitignore
    └── angular.json
    └── package-lock.json
    └── package.json
    └── server.ts
    └── tsconfig.app.json
    └── tsconfig.json
    └── tsconfig.spec.json