From 69c281b8bdeef910ecd2520210b281fc576792af Mon Sep 17 00:00:00 2001 From: Tim Rijkse Date: Fri, 16 Jan 2026 11:58:43 +0100 Subject: [PATCH] fix: update drawer and nav for imprints --- js/components/horizontal-scroll-nav.js | 15 ++++++--------- js/components/mobile-drawer.js | 9 +++++---- 2 files changed, 11 insertions(+), 13 deletions(-) diff --git a/js/components/horizontal-scroll-nav.js b/js/components/horizontal-scroll-nav.js index c55e17e..5331a77 100644 --- a/js/components/horizontal-scroll-nav.js +++ b/js/components/horizontal-scroll-nav.js @@ -7,14 +7,11 @@ class HorizontalScrollNav extends HTMLElement { super(); this.attachShadow({ mode: "open" }); this.categories = [ - { id: "all", label: "All", active: true }, - { id: "fiction", label: "Fiction", active: false }, - { id: "non-fiction", label: "Non-Fiction", active: false }, - { id: "mystery", label: "Mystery", active: false }, - { id: "romance", label: "Romance", active: false }, - { id: "sci-fi", label: "Sci-Fi", active: false }, - { id: "biography", label: "Biography", active: false }, - { id: "history", label: "History", active: false }, + { id: "asoka", label: "Asoka", active: true }, + { id: "synthese", label: "Synthese", active: false }, + { id: "de-driehoek", label: "De Driehoek", active: false }, + { id: "waerbeke", label: "Waerbeke", active: false }, + { id: "stuivenberg", label: "Stuivenberg", active: false }, ]; } @@ -110,7 +107,7 @@ class HorizontalScrollNav extends HTMLElement { background-color: #7a1843; } -