From 663b26c2f525b8b407d59dbf47a3b61830a77106 Mon Sep 17 00:00:00 2001 From: Remi <73385395+itsrubberduck@users.noreply.github.com> Date: Sat, 4 Oct 2025 19:12:23 +0200 Subject: [PATCH] docs: embed hero artwork in about section --- app/pages/api-docs.vue | 35 ++++++----------------------------- 1 file changed, 6 insertions(+), 29 deletions(-) diff --git a/app/pages/api-docs.vue b/app/pages/api-docs.vue index bf21684..7c9f57f 100644 --- a/app/pages/api-docs.vue +++ b/app/pages/api-docs.vue @@ -91,25 +91,14 @@
-
-
-
-
- - {{ target.label }} - -
-
-
-
+
+
+ Weather briefing overview +
+

Developer

About the API

@@ -1095,18 +1084,6 @@ const navigationSections = computed(() => const fullEndpointUrl = (path: string) => `${BASE_URL}${path}` -const quickJumpTargets = computed(() => { - const sectionTargets = filteredSections.value.map((section) => ({ - label: section.title, - anchor: sectionAnchor(section.title), - })) - - return [ - { label: 'About the API', anchor: generalAnchor }, - ...sectionTargets, - ] -}) - const getEndpointKey = (endpoint: EndpointEntry) => `${endpoint.method.toUpperCase()}-${endpoint.path}` const getCopyKey = (endpoint: EndpointEntry, type: 'url' | 'request' | 'response') =>