From b50ad9c70b9db0fbd32d0be91486d8bc56108c54 Mon Sep 17 00:00:00 2001 From: alelthomas Date: Mon, 22 Dec 2025 16:57:43 -0700 Subject: [PATCH 1/2] cleanup --- .../components/header/HeaderNavDropdown.tsx | 4 ++-- docs/src/icons/SvgBaseUiLogo.tsx | 21 ++++++++++++------- .../modules/components/MuiProductSelector.tsx | 6 +++--- docs/src/route.ts | 6 +++--- 4 files changed, 22 insertions(+), 15 deletions(-) diff --git a/docs/src/components/header/HeaderNavDropdown.tsx b/docs/src/components/header/HeaderNavDropdown.tsx index b313a4b28de7ec..0cffacc22d50d0 100644 --- a/docs/src/components/header/HeaderNavDropdown.tsx +++ b/docs/src/components/header/HeaderNavDropdown.tsx @@ -88,8 +88,8 @@ const DOCS = [ href: ROUTES.joyDocs, }, { - name: 'MUIĀ Base', - description: 'Unstyled React components and low-level hooks.', + name: 'Base UI', + description: 'Unstyled components for building accessible UIs.', href: ROUTES.baseDocs, }, { diff --git a/docs/src/icons/SvgBaseUiLogo.tsx b/docs/src/icons/SvgBaseUiLogo.tsx index 17cfbf6ba0e753..86e0ae95811bca 100644 --- a/docs/src/icons/SvgBaseUiLogo.tsx +++ b/docs/src/icons/SvgBaseUiLogo.tsx @@ -6,22 +6,29 @@ export default function SvgBaseUiLogo(props: RootSvgProps) { xmlns="http://www.w3.org/2000/svg" width={24} height={24} - viewBox="0 0 24 24" + viewBox="0 0 24 32" fill="none" {...props} > + ); } export const baseSvgLogoString = ` - + + `; -export const baseSvgWordmarkString = ``; +export const baseSvgWordmarkString = ` + + + +`; diff --git a/docs/src/modules/components/MuiProductSelector.tsx b/docs/src/modules/components/MuiProductSelector.tsx index f318b5095770d4..f3fffc1ee3f16d 100644 --- a/docs/src/modules/components/MuiProductSelector.tsx +++ b/docs/src/modules/components/MuiProductSelector.tsx @@ -138,9 +138,9 @@ const coreProducts = [ }, { id: 'base-ui', - name: 'MUIĀ Base', - description: 'Unstyled components and hooks.', - icon: , + name: 'Base UI', + description: 'Unstyled components for accessible UIs.', + icon: , href: ROUTES.baseDocs, }, { diff --git a/docs/src/route.ts b/docs/src/route.ts index ded4989fd9155c..1bc3d7d2dc1cd8 100644 --- a/docs/src/route.ts +++ b/docs/src/route.ts @@ -26,9 +26,9 @@ const ROUTES = { support: '/material-ui/getting-started/support/', goldSponsor: '/material-ui/discover-more/backers/#gold-sponsors', // Base UI doc pages - baseDocs: '/base-ui/getting-started/', - baseComponents: '/base-ui/all-components/', - baseQuickstart: '/base-ui/getting-started/quickstart/', + baseDocs: 'https://base-ui.com/', + baseComponents: 'https://base-ui.com/react/components', + baseQuickstart: 'https://base-ui.com/react/overview/quick-start', // Joy UI doc pages joyDocs: '/joy-ui/getting-started/', // System pages From 3e86554f2419cc23e1491002a690bccd04d0145b Mon Sep 17 00:00:00 2001 From: alelthomas Date: Mon, 5 Jan 2026 10:12:18 -0700 Subject: [PATCH 2/2] tests --- test/e2e-website/products-drawer.spec.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/e2e-website/products-drawer.spec.ts b/test/e2e-website/products-drawer.spec.ts index 8cd96431655338..36df130e7a51b3 100644 --- a/test/e2e-website/products-drawer.spec.ts +++ b/test/e2e-website/products-drawer.spec.ts @@ -23,7 +23,5 @@ test('able to navigate between products', async ({ page }) => { await expect(page.locator('#mui-product-menu a[href^="/x/react-data-grid/"]')).toBeVisible(); await expect(page.locator('#mui-product-menu a[href^="/x/react-date-pickers/"]')).toBeVisible(); - await expect( - page.locator('#mui-product-menu a[href^="/base-ui/getting-started/"]'), - ).toBeVisible(); + await expect(page.locator('#mui-product-menu a[href^="https://base-ui.com/"]')).toBeVisible(); });