> For the complete documentation index, see [llms.txt](https://overleaf-pro.ayaka.space/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://overleaf-pro.ayaka.space/on-premises/id/konfigurasi/overleaf-toolkit/branding.md).

# Pencitraan merek

### Header <a href="#header" id="header"></a>

Di bagian ini, kita akan membahas cara mempersonalisasi elemen-elemen utama dari instans on-premises Anda. Anda dapat menyesuaikan judul situs, tautan navigasi, header, footer, dan logo sesuai preferensi Anda.

### Judul situs <a href="#site-title" id="site-title"></a>

Judul bilah navigasi dapat disesuaikan dengan `OVERLEAF_NAV_TITLE` variabel lingkungan, teks ini digunakan di sudut kiri atas navigasi jika tidak ada logo yang disetel.

```bash
# tambahkan ke config/variables.env
OVERLEAF_NAV_TITLE=Our Overleaf Instance
```

## Logo

Anda dapat menambahkan logo kustom alih-alih menggunakan teks dengan menyetel variabel lingkungan `OVERLEAF_HEADER_IMAGE_URL`. Nilai ini harus mengarah ke file gambar yang di-host secara eksternal.

Tambahkan ke config/variables.env:

{% code title="config/variables.env" %}

```bash
# tambahkan ke config/variables.env
OVERLEAF_HEADER_IMAGE_URL=https://mysite.somewhere.com/img/logo.png
```

{% endcode %}

## Tautan navigasi header

Item navigasi tambahan dapat ditambahkan ke header navigasi dengan menyetel `OVERLEAF_HEADER_EXTRAS` variabel lingkungan menjadi array objek JSON. Contohnya:

{% code overflow="wrap" %}

```json
[\
  {\
    "text": "Tautan contoh",\
    "url": "http://example.com/somelink",\
    "class": "subdued",\
    "only_when_logged_out": true\
  },\
  {\
    "text": "Bantuan",\
    "class": "subdued",\
    "dropdown": [\
      {\
        "text": "Dokumentasi",\
        "url": "/learn"\
      },\
      {\
        "text": "Hubungi Admin",\
        "url": "http://example.com/contact"\
      }\
    ]\
  }\
]
```

{% endcode %}

Tambahkan bentuk JSON yang di-escape ke toolkit/variables.env:

{% code title="toolkit/variables.env" overflow="wrap" %}

```bash
# tambahkan ke toolkit/variables.env
OVERLEAF_HEADER_EXTRAS=[{"text":"Tautan contoh","url":"http://example.com/somelink","class":"subdued","only_when_logged_out":true},{"text":"Bantuan","class":"subdued","dropdown":[{"text":"Dokumentasi","url":"/learn"},{"text":"Hubungi Admin","url":"http://example.com/contact"}]}]
```

{% endcode %}

## Footer

Dimungkinkan untuk menyesuaikan footer kiri dan footer kanan yang lebih kecil (ditemukan pada halaman seperti `/project`) menggunakan variabel lingkungan `OVERLEAF_LEFT_FOOTER` dan `OVERLEAF_RIGHT_FOOTER`. Keduanya mengharapkan array objek JSON yang akan disisipkan.

Keduanya mengharapkan array JSON yang akan disisipkan.

```json
[\
  {\
    "text": "Ini adalah entri footer teks contoh!"\
  },\
  {\
    "text": "Ini adalah tautan footer URL contoh!", "url" : "/my-first-link.htm"\
  }\
]
```

{% hint style="info" %}
Saat menggunakan `text` saja, itu tidak boleh berisi HTML karena nilainya akan dirender sebagai teks mentah.
{% endhint %}

Data ini harus berupa JSON yang valid agar berfungsi, dengan tanda kutip di-escape saat diteruskan sebagai variabel lingkungan.

{% code title="config/variables.env" overflow="wrap" %}

```bash
# tambahkan ke config/variables.env
OVERLEAF_LEFT_FOOTER=[{"text": "Ini adalah entri footer teks contoh!"}]
OVERLEAF_RIGHT_FOOTER=["text": "Ini adalah tautan footer URL contoh!", "url" : "/my-first-link.htm"]
```

{% endcode %}

{% hint style="info" %}
Selain `text` dan `url`, objek JSON juga menerima properti `class` dan `label` untuk kustomisasi tambahan.
{% 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://overleaf-pro.ayaka.space/on-premises/id/konfigurasi/overleaf-toolkit/branding.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.
