> For the complete documentation index, see [llms.txt](https://ayakaleaf-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://ayakaleaf-pro.ayaka.space/on-premises/id/konfigurasi/overleaf-toolkit/branding.md).

# Pencitraan merek

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

Di bagian ini, kami akan membahas cara mempersonalisasi elemen-elemen kunci dari instance 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 pojok kiri atas navigasi jika tidak ada logo yang ditetapkan.

```bash
# tambahkan ke config/variables.env
OVERLEAF_NAV_TITLE=Instansi Overleaf Kami
```

## Logo

Anda dapat menambahkan logo kustom alih-alih menggunakan teks dengan menetapkan 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 menetapkan `OVERLEAF_HEADER_EXTRAS` variabel lingkungan ke larik JSON berisi objek. Misalnya:

{% code overflow="wrap" %}

```json
[\
  {\
    "text": "Beberapa tautan",\
    "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":"Beberapa tautan","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 (terdapat di halaman seperti `/project`) menggunakan variabel lingkungan `OVERLEAF_LEFT_FOOTER` dan `OVERLEAF_RIGHT_FOOTER`. Keduanya mengharapkan larik objek JSON yang akan disisipkan.

Keduanya mengharapkan larik JSON yang akan disisipkan.

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

{% hint style="info" %}
Saat menggunakan `teks` saja, nilainya tidak boleh berisi HTML karena nilai 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 contoh entri footer teks!"}]
OVERLEAF_RIGHT_FOOTER=["text": "Ini adalah contoh tautan footer URL!", "url" : "/my-first-link.htm"]
```

{% endcode %}

{% hint style="info" %}
Selain `teks` dan `url`, objek JSON juga menerima properti `kelas` dan `label` untuk penyesuaian 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://ayakaleaf-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.
