From 92d1ca5371fd0e3ec2025361372327d4e00d6e12 Mon Sep 17 00:00:00 2001 From: Christoph Knittel Date: Fri, 12 Jan 2024 16:52:42 +0100 Subject: [PATCH] Update API docs sidebar --- src/layouts/ApiOverviewLayout.res | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/src/layouts/ApiOverviewLayout.res b/src/layouts/ApiOverviewLayout.res index c46a395c0..a14dd21c7 100644 --- a/src/layouts/ApiOverviewLayout.res +++ b/src/layouts/ApiOverviewLayout.res @@ -6,17 +6,20 @@ let categories: array = [ items: [{name: "Overview", href: "/docs/manual/latest/api"}], }, { - name: "Core Stdlib", - items: [{name: "Core Stdlib", href: "/docs/manual/latest/api/core"}], + name: "Standard Library", + items: [{name: "Core", href: "/docs/manual/latest/api/core"}], }, { - name: "Other Modules", + name: "Additional Libraries", items: [ - {name: "Js Module", href: "/docs/manual/latest/api/js"}, - {name: "Belt Stdlib", href: "/docs/manual/latest/api/belt"}, - {name: "Dom Module", href: "/docs/manual/latest/api/dom"}, + {name: "Belt", href: "/docs/manual/latest/api/belt"}, + {name: "Dom", href: "/docs/manual/latest/api/dom"}, ], }, + { + name: "Legacy Modules", + items: [{name: "Js", href: "/docs/manual/latest/api/js"}], + }, ] /* Used for API docs (structured data) */