# Folder Structure

Under the `able-pro-material-next/` In the directory, you will find the following folder structure.

{% tabs %}
{% tab title="NEXT (TS)" %}
{% code title="able-pro-material-next-ts" %}

```json
..
├── public
│   ├── assets             -> images in different directories
│   │   ├── images
│   │   │   ├── auth
│   │   │   ├── cards
│   │   │   ├── ...
│   │   ├── third-party
├── src              
│   ├── api
│   ├── app                -> different routes based on layouts
│   │   ├── (auth)         
│   │   ├── (blank)     
│   │   ├── (component)    
│   │   ├── (dashboard)       
│   │   │   ├── apps
│   │   │   ├── charts
│   │   │   ├── ...
│   │   ├── (simple)       -> Layout for simple
│   ├── components         -> components used in different pages
│   │   ├── @extended
│   │   ├── cards
│   │   ├── customization
│   │   ├── logo
│   │   ├── ...
│   ├── contexts           -> State context for Login and other
│   ├── data               -> Static data
│   ├── hooks              -> Custom hooks
│   ├── layout
│   │   ├── ComponentLayout     -> Layout for components showcase
│   │   ├── DashboardLayout     -> Layout for Dashboard
│   │   ├── SimpleLayout        -> Layout for simple   
│   ├── menu-items              -> menu items for each main menu
│   │   ├── application.js
│   │   ├── dashboard.js
│   │   ├── ...
│   ├── sections           -> This contains different sections used only for pages
│   ├── themes             -> Contains application style and theme
│   ├── types              -> common types for Typescript. Exist only in Typescript
│   ├── utils
│   │   ├── locales        -> different locale json files
│   │   ├── route-guard    -> Auth guard to prevent unexpected navigations
│   │   ├── ...
│   ├── views              -> list of Next.js files and directory
│   │   ├── app
│   │   ├── dashboard
│   │   ├── ...
│   ├── config.ts          -> Template constant value and live customization
├── eslint.config.mjs
├── .prettierrc
├── tsconfig.json
├── next.config.ts
├── package-lock.json      -> Package lock file.
├── package.json           -> Package json file.
├── README.md
├── yarn.lock              -> yarn lock file.  
```

{% endcode %}
{% endtab %}

{% tab title="NEXT (JS)" %}
{% code title="able-pro-material-next-js" %}

```json
..
├── public
│   ├── assets             -> images in different directories
│   │   ├── images
│   │   │   ├── auth
│   │   │   ├── cards
│   │   │   ├── ...
│   │   ├── third-party
├── src              
│   ├── api
│   ├── app                -> different routes based on layouts
│   │   ├── (auth)         
│   │   ├── (blank)     
│   │   ├── (component)    
│   │   ├── (dashboard)       
│   │   │   ├── apps
│   │   │   ├── charts
│   │   │   ├── ...
│   │   ├── (simple)       -> Layout for simple
│   ├── components         -> components used in different pages
│   │   ├── @extended
│   │   ├── cards
│   │   ├── customization
│   │   ├── logo
│   │   ├── ...
│   ├── contexts           -> State context for Login and other
│   ├── data               -> Static data
│   ├── hooks              -> Custom hooks
│   ├── layout
│   │   ├── ComponentLayout     -> Layout for components showcase
│   │   ├── DashboardLayout     -> Layout for Dashboard
│   │   ├── SimpleLayout        -> Layout for simple   
│   ├── menu-items              -> menu items for each main menu
│   │   ├── application.js
│   │   ├── dashboard.js
│   │   ├── ...
│   ├── sections           -> This contains different sections used only for pages
│   ├── themes             -> Contains application style and theme
│   ├── utils
│   │   ├── locales        -> different locale json files
│   │   ├── route-guard    -> Auth guard to prevent unexpected navigations
│   │   ├── ...
│   ├── views              -> list of Next.js files and directory
│   │   ├── app
│   │   ├── dashboard
│   │   ├── ...
│   ├── config.js          -> Template constant value and live customization
├── eslint.config.mjs
├── .prettierrc
├── jsconfig.json
├── next-env.d.js
├── next.config.js
├── package-lock.json      -> Package lock file.
├── package.json           -> Package json file.
├── README.md
├── yarn.lock              -> yarn lock file.  
```

{% endcode %}
{% endtab %}
{% endtabs %}


---

# 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/nextjs/folder-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.
