From 215ad3ae7f2fd30ac697ef5b6800db5f2a67097d Mon Sep 17 00:00:00 2001 From: shiva108 Date: Fri, 5 Dec 2025 19:19:33 +0100 Subject: [PATCH] feat: Add GitBook configuration via `book.json` and update asset paths in `.gitbook.yaml`. --- .gitbook.yaml | 4 ++-- book.json | 16 ++++++++++++++++ 2 files changed, 18 insertions(+), 2 deletions(-) create mode 100644 book.json diff --git a/.gitbook.yaml b/.gitbook.yaml index 841b55f..a944bb1 100644 --- a/.gitbook.yaml +++ b/.gitbook.yaml @@ -14,8 +14,8 @@ structure: # Branding (Experimental for Code-Config) branding: - logo: assets/banner.svg - icon: assets/banner.svg + logo: docs/assets/banner.svg + icon: docs/assets/banner.svg colors: primary: "#3884ff" diff --git a/book.json b/book.json new file mode 100644 index 0000000..f8facd2 --- /dev/null +++ b/book.json @@ -0,0 +1,16 @@ +{ + "title": "AI LLM Red Team Handbook", + "author": "CPH:SEC", + "gitbook": ">=3.2.3", + "root": "./docs", + "plugins": [ + "insert-logo", + "theme-default" + ], + "pluginsConfig": { + "insert-logo": { + "url": "assets/banner.svg", + "style": "background: none; max-height: 50px;" + } + } +} \ No newline at end of file