# Directory Structure

```

├── src/
│   ├── app/
│   │   ├── @theme/                           -> Theming for the project will be managed here
│   │   │   ├── components/                   -> Custom-made component of theme
│   │   │   │   ├── card      
│   │   │   │   ├── breadcrumb                -> Theme breadcrumb               
│   │   │   │   ├── helpers
│   │   │   │   ├── modal-dialog             
│   │   │   │   ├── navigation/               -> Navigation components
│   │   │   ├── layouts/                      -> Layout for dashboard
│   │   │   │   ├── menu/
│   │   │   │   │   ├── vertical-menu/
│   │   │   │   │   ├── ...
│   │   │   │   ├── toolbar/
│   │   │   ├── service/                      -> Services related to theme
│   │   │   ├── styles/
│   │   │   │   ├── layout                    -> Layout scss
│   │   │   │   ├── pages                     -> Pages scss
│   │   │   │   ├── theme-mode                -> Theming mode scss   
│   │   │   │   ├── grid.scss                 -> Gird layout scss  
│   │   │   │   ├── theme-overrides.scss      -> Angular material overrides
│   │   │   │   ├── theme-dark-palette-colors.scss      -> Theming dark color scss
│   │   │   │   ├── theme-palette-colors.scss -> Theming color scss
│   │   │   │   ├── theme.scss                -> Theming scss
│   │   │   ├── types/   
│   │   ├── demo/                
│   │   │   ├── data/                    
│   │   │   │   ├── component.ts
│   │   │   │   ├── menu.ts   
│   │   │   ├── layout/
│   │   │   │   ├── admin
│   │   │   │   ├── component
│   │   │   │   ├── empty
│   │   │   │   ├── front
│   │   │   ├── pages/                        -> View files for all pages
│   │   │   │   ├── admin-panel/              -> Admin Panel
│   │   │   │   │   ├── helpdesk/
│   │   │   │   │   ├── invoice/
│   │   │   │   │   ├── membership/
│   │   │   │   │   ├── online-courses/
│   │   │   │   ├── application/              -> Application pages
│   │   │   │   │   ├── calender
│   │   │   │   │   ├── kanban
│   │   │   │   │   ├── ...
│   │   │   │   ├── auth/                     -> Auth pages
│   │   │   │   │   ├── authentication-1/
│   │   │   │   │   ├── ...
│   │   │   │   ├── dashboard/                -> Dashboard page
│   │   │   │   ├── components/               -> Angular material component page
│   │   │   │   │   ├── data-display/
│   │   │   │   │   ├── ...
│   │   │   │   ├── ...                       -> Other theme page
│   │   │   ├── shared/
│   │   ├── fake-data/                        -> Dummy data
│   │   ├── app.component.html
│   │   ├── app.component.scss
│   │   ├── app.component.ts
│   │   ├── app.config.ts                     -> Different theme config
│   │   ├── app-routing.module.ts             -> Different routes based on layouts
│   ├── assets/
│   ├── environments/
│   ├── SCSS/
│   │   ├── fonts/
│   │   ├── more...
│   ├── style.scss/                           -> Theme style
│   ├── _index.html
│   ├── _main.ts
│   ├── ...
├── angular.json                              -> Angular json file
├── package.json                              -> Package json file
├── ...
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://phoenixcoded.gitbook.io/able-pro/angular/directory-structure.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
