> For the complete documentation index, see [llms.txt](https://codpat.gitbook.io/codpat-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://codpat.gitbook.io/codpat-docs/how-to-customize-main-website.md).

# How to customize main website

### I’m going to explain how you can edit any config file here

The first thing you need to do is find the main website folder, open it with VS Code, and then locate the `config.js` file.

<figure><img src="/files/0236VWd5JnijfBpRCoRF" alt=""><figcaption></figcaption></figure>

As you can see above, a file like this should appear

#### **Know what you should and shouldn’t change**

When customizing the website by editing the config file, there are **some important rules** you need to follow. Changing the wrong parts can cause the site to break.

{% columns %}
{% column %}

#### **Understand keys and values**

In the code you see here:

* The parts **circled in red** are **keys**.\
  ❌ **Do NOT change these.**\
  If you modify the keys, the website will crash.
* The parts **circled in green** are **values**.\
  ✅ **You are allowed to change these.**\
  This is where you customize text, colors, and content.
  {% endcolumn %}

{% column %}

<figure><img src="/files/TqdwnjbBTGiJXe4QvdVP" alt=""><figcaption></figcaption></figure>
{% endcolumn %}
{% endcolumns %}

#### **Be careful with quotation marks**

Every value **must stay inside quotation marks (`"`).**

⚠️ If you delete or forget **even one quotation mark**, the website will not work.

{% hint style="info" %}
If you need any help, you can[ join our Discord](https://discord.gg/CAgb7mvqpx) and get free support.
{% 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://codpat.gitbook.io/codpat-docs/how-to-customize-main-website.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.
