diff --git a/site/src/pages/index.astro b/site/src/pages/index.astro index 837292cc200b..44cf1a8e9dbb 100644 --- a/site/src/pages/index.astro +++ b/site/src/pages/index.astro @@ -18,6 +18,8 @@ const endpoints = [ { label: "/v1/socs/{slug}", desc: "System-on-chip detail", href: `${base}v1/socs/snapdragon-8-elite-gen-5/index.json` }, { label: "/v1/gpus/{slug}", desc: "Discrete GPU detail", href: `${base}v1/gpus/geforce-rtx-5090/index.json` }, { label: "/v1/cpus/{slug}", desc: "Desktop / laptop CPU", href: `${base}v1/cpus/core-i9-14900k/index.json` }, + { label: "/v1/software", desc: "List all software", href: `${base}v1/software/index.json` }, + { label: "/v1/websites", desc: "List all websites", href: `${base}v1/websites/index.json` }, { label: "/v1/brands", desc: "All brands", href: `${base}v1/brands/index.json` }, ]; --- @@ -39,7 +41,7 @@ const endpoints = [ })();