From 7fcb070b82390e70d2da9dccf38550f808405241 Mon Sep 17 00:00:00 2001 From: Jack Zhuang <277994282+os-zhuang@users.noreply.github.com> Date: Mon, 29 Jun 2026 15:02:47 +0800 Subject: [PATCH 1/2] feat(app-showcase): surface the Command Center (JSX) page in nav (ADR-0080) The kind:'jsx' example page existed + was browser-verified but wasn't reachable in the showcase app. Add a Pages nav item so it's clickable. Co-Authored-By: Claude Opus 4.8 --- examples/app-showcase/src/apps/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/app-showcase/src/apps/index.ts b/examples/app-showcase/src/apps/index.ts index 441695079f..66940318b5 100644 --- a/examples/app-showcase/src/apps/index.ts +++ b/examples/app-showcase/src/apps/index.ts @@ -65,6 +65,7 @@ export const ShowcaseApp = App.create({ icon: 'layout', children: [ { id: 'nav_gallery', type: 'page', pageName: 'showcase_component_gallery', label: 'Component Gallery', icon: 'layout-template' }, + { id: 'nav_command_center_jsx', type: 'page', pageName: 'showcase_command_center_jsx', label: 'Command Center (JSX)', icon: 'code' }, { id: 'nav_styling_gallery', type: 'page', pageName: 'showcase_styling_gallery', label: 'Styling (ADR-0065)', icon: 'palette' }, { id: 'nav_page_variables', type: 'page', pageName: 'showcase_page_variables', label: 'Page Variables', icon: 'mouse-pointer-click' }, { id: 'nav_contact_form', type: 'page', pageName: 'showcase_contact_form', label: 'Contact Form', icon: 'mail-plus' }, From 81d095468876aa8eda2b54393a6c95019870904d Mon Sep 17 00:00:00 2001 From: Jack Zhuang <277994282+os-zhuang@users.noreply.github.com> Date: Mon, 29 Jun 2026 18:07:58 +0800 Subject: [PATCH 2/2] chore: retrigger CI (prior run hit transient infra failures) Co-Authored-By: Claude Opus 4.8