From d32109d4e56e9ca6af4d25c35f475ac3f63c4ce0 Mon Sep 17 00:00:00 2001 From: Seungpyo Hong Date: Tue, 14 Jul 2026 04:33:50 +0000 Subject: [PATCH 1/4] fix(site): expose published playground resources --- site/src/pages/index.astro | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/site/src/pages/index.astro b/site/src/pages/index.astro index 0eb89ad8164b..9f09c0a809e4 100644 --- a/site/src/pages/index.astro +++ b/site/src/pages/index.astro @@ -11,6 +11,8 @@ const endpoints = [ { label: "/v1/smartphones/{slug}", desc: "Phone detail + scores", href: `${base}v1/smartphones/galaxy-s26-ultra/index.json` }, { label: "/v1/smartphones/{slug}/score", desc: "Computed scores", href: `${base}v1/smartphones/galaxy-s26-ultra/score/index.json` }, { label: "/v1/tablets", desc: "List all tablets", href: `${base}v1/tablets/index.json` }, + { label: "/v1/laptops", desc: "List all laptops", href: `${base}v1/laptops/index.json` }, + { label: "/v1/monitors", desc: "List all monitors", href: `${base}v1/monitors/index.json` }, { label: "/v1/watches", desc: "List all watches", href: `${base}v1/watches/index.json` }, { label: "/v1/pdas", desc: "List all PDAs", href: `${base}v1/pdas/index.json` }, { label: "/v1/socs/{slug}", desc: "System-on-chip detail", href: `${base}v1/socs/snapdragon-8-elite-gen-5/index.json` }, @@ -161,8 +163,11 @@ const endpoints = [