> For the complete documentation index, see [llms.txt](https://docs.sentre.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sentre.io/development/static.md).

# Static

Static assets include icons, panels, readme, etc., which build your DApps appearance to users on the Sen Store and also on the user's dashboard.

```typescript
// ./src/static.app.tsx

import panel1 from 'app/static/images/panel1.png'
import panel2 from 'app/static/images/panel2.png'
import panel3 from 'app/static/images/panel3.png'

export const panels = [panel1, panel2, panel3]
export { default as logo } from 'app/static/images/logo.png'
export { default as readme } from 'app/static/docs/README.md'
```

Currently, to present a DApp, developers can use a logo, panels, and a readme.

#### Logo

The logo is used as an application icon and Window, iOS, or Android. The logo must be exported in the static file.

| Property | Spec                             |
| -------- | -------------------------------- |
| Format   | image/png, image/jpeg, image/svg |
| Ratio    | 1:1                              |

{% hint style="info" %}
We highly recommend the **size 256x256** pixels with a **60 border-radius** for Logo.
{% endhint %}

#### Panels

The panels usually appear as a slide for DApp introduction in Sen Store. The panel must be exported as an array in the static file.

| Property | Spec                             |
| -------- | -------------------------------- |
| Format   | image/png, image/jpeg, image/svg |
| Ratio    | 4:3                              |

#### Readme

The readme will give users a deep look such as introduction, guidelines, technical explanation, etc., about the DApp. The readme must be written under the format of markdown and exported in the static file.

| Property | Spec     |
| -------- | -------- |
| Format   | markdown |

{% hint style="info" %}
For [markdown quick references](https://wordpress.com/support/markdown-quick-reference/).
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.sentre.io/development/static.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
