From 77879f34a755b839fdf454a0325b18a51e79ff2b Mon Sep 17 00:00:00 2001 From: Albert Yu Date: Wed, 22 Jan 2025 12:31:52 +0800 Subject: [PATCH 1/9] Add trailing slash --- docs/public/_redirects | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/public/_redirects b/docs/public/_redirects index 7a249e1d56cd5f..98b9636d692980 100644 --- a/docs/public/_redirects +++ b/docs/public/_redirects @@ -509,7 +509,7 @@ https://v4.material-ui.com/* https://v4.mui.com/:splat 301! /material-ui/experimental-api/css-theme-variables/overview/ /material-ui/customization/css-theme-variables/overview/ 301 /material-ui/experimental-api/css-theme-variables/usage/ /material-ui/customization/css-theme-variables/usage/ 301 /material-ui/experimental-api/css-theme-variables/customization/ /material-ui/customization/css-theme-variables/configuration/ 301 -/base-ui https://base-ui.com 301 +/base-ui/ https://base-ui.com/ 301 # Proxies From 23c611a6835f9a10bfd96f9e5994d7c1d59fd3d3 Mon Sep 17 00:00:00 2001 From: Albert Yu Date: Wed, 22 Jan 2025 15:14:55 +0800 Subject: [PATCH 2/9] kick CI From 025df7d214745b74cc9bd045d3a01fc3b9621165 Mon Sep 17 00:00:00 2001 From: Albert Yu Date: Wed, 22 Jan 2025 17:50:19 +0800 Subject: [PATCH 3/9] force redirect --- docs/public/_redirects | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/public/_redirects b/docs/public/_redirects index 98b9636d692980..95cf36d1fd4f75 100644 --- a/docs/public/_redirects +++ b/docs/public/_redirects @@ -509,7 +509,7 @@ https://v4.material-ui.com/* https://v4.mui.com/:splat 301! /material-ui/experimental-api/css-theme-variables/overview/ /material-ui/customization/css-theme-variables/overview/ 301 /material-ui/experimental-api/css-theme-variables/usage/ /material-ui/customization/css-theme-variables/usage/ 301 /material-ui/experimental-api/css-theme-variables/customization/ /material-ui/customization/css-theme-variables/configuration/ 301 -/base-ui/ https://base-ui.com/ 301 +/base-ui/ https://base-ui.com/ 301! # Proxies From 17f1a6e4d55ea25dfb3db69d90e808b650b355cb Mon Sep 17 00:00:00 2001 From: Albert Yu Date: Wed, 22 Jan 2025 18:22:37 +0800 Subject: [PATCH 4/9] try removing the page instead --- docs/next.config.ts | 9 ++++++++ docs/pages/base-ui.tsx | 47 ------------------------------------------ docs/public/_redirects | 2 +- 3 files changed, 10 insertions(+), 48 deletions(-) delete mode 100644 docs/pages/base-ui.tsx diff --git a/docs/next.config.ts b/docs/next.config.ts index fa944a808b8baf..df35d969bb97ea 100644 --- a/docs/next.config.ts +++ b/docs/next.config.ts @@ -256,6 +256,15 @@ export default withDocsInfra({ return map; }, + redirects: async () => { + return [ + { + source: '/base-ui/', + destination: 'https://base-ui.com', + permanent: true, + }, + ]; + }, // Used to signal we run pnpm build ...(process.env.NODE_ENV === 'production' ? { diff --git a/docs/pages/base-ui.tsx b/docs/pages/base-ui.tsx deleted file mode 100644 index 83112507bf8ef6..00000000000000 --- a/docs/pages/base-ui.tsx +++ /dev/null @@ -1,47 +0,0 @@ -import * as React from 'react'; -import Divider from '@mui/material/Divider'; -import Head from 'docs/src/modules/components/Head'; -import BrandingCssVarsProvider from 'docs/src/BrandingCssVarsProvider'; -import AppHeader from 'docs/src/layouts/AppHeader'; -import AppFooter from 'docs/src/layouts/AppFooter'; -import AppHeaderBanner from 'docs/src/components/banner/AppHeaderBanner'; -import BaseUIHero from 'docs/src/components/productBaseUI/BaseUIHero'; -import BaseUISummary from 'docs/src/components/productBaseUI/BaseUISummary'; -import BaseUIComponents from 'docs/src/components/productBaseUI/BaseUIComponents'; -import BaseUICustomization from 'docs/src/components/productBaseUI/BaseUICustomization'; -import BaseUIEnd from 'docs/src/components/productBaseUI/BaseUIEnd'; -import BaseUITestimonial from 'docs/src/components/productBaseUI/BaseUITestimonial'; - -export default function BaseUI() { - return ( - - - {/* eslint-disable-next-line @next/next/no-page-custom-font */} - - - - -
- - - - - - - - - - - -
- -
- ); -} diff --git a/docs/public/_redirects b/docs/public/_redirects index 95cf36d1fd4f75..98b9636d692980 100644 --- a/docs/public/_redirects +++ b/docs/public/_redirects @@ -509,7 +509,7 @@ https://v4.material-ui.com/* https://v4.mui.com/:splat 301! /material-ui/experimental-api/css-theme-variables/overview/ /material-ui/customization/css-theme-variables/overview/ 301 /material-ui/experimental-api/css-theme-variables/usage/ /material-ui/customization/css-theme-variables/usage/ 301 /material-ui/experimental-api/css-theme-variables/customization/ /material-ui/customization/css-theme-variables/configuration/ 301 -/base-ui/ https://base-ui.com/ 301! +/base-ui/ https://base-ui.com/ 301 # Proxies From 9e73caa7a017acc480f00a35cc21cbdaee76d172 Mon Sep 17 00:00:00 2001 From: Albert Yu Date: Wed, 22 Jan 2025 18:50:27 +0800 Subject: [PATCH 5/9] Fix links --- .../components/click-away-listener/click-away-listener.md | 2 +- docs/data/material/components/no-ssr/no-ssr.md | 2 +- docs/data/material/components/portal/portal.md | 2 +- .../components/textarea-autosize/textarea-autosize.md | 2 +- docs/data/material/getting-started/overview/overview.md | 2 +- docs/data/system/getting-started/overview/overview.md | 4 ++-- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/data/material/components/click-away-listener/click-away-listener.md b/docs/data/material/components/click-away-listener/click-away-listener.md index 8068a953195930..eeeb0a89e33131 100644 --- a/docs/data/material/components/click-away-listener/click-away-listener.md +++ b/docs/data/material/components/click-away-listener/click-away-listener.md @@ -14,6 +14,6 @@ githubLabel: 'component: ClickAwayListener' :::warning Please refer to the [Click-Away Listener](/base-ui/react-click-away-listener/) component page in the MUI Base docs for demos and details on usage. -Click-Away Listener is a part of the standalone [MUI Base](/base-ui/) component library. +Click-Away Listener is a part of the standalone MUI Base component library. It is currently re-exported from `@mui/material` for your convenience, but it will be removed from this package in a future major version after MUI Base gets a stable release. ::: diff --git a/docs/data/material/components/no-ssr/no-ssr.md b/docs/data/material/components/no-ssr/no-ssr.md index 303431b46cef6b..ac2611539ebcd3 100644 --- a/docs/data/material/components/no-ssr/no-ssr.md +++ b/docs/data/material/components/no-ssr/no-ssr.md @@ -13,6 +13,6 @@ components: NoSsr :::warning Please refer to the [No-SSR](/base-ui/react-no-ssr/) component page in the MUI Base docs for demos and details on usage. -No-SSR is a part of the standalone [MUI Base](/base-ui/) component library. +No-SSR is a part of the standalone MUI Base component library. It is currently re-exported from `@mui/material` for your convenience, but it will be removed from this package in a future major version after MUI Base gets a stable release. ::: diff --git a/docs/data/material/components/portal/portal.md b/docs/data/material/components/portal/portal.md index ebbc93a309a164..d8e92c4db26418 100644 --- a/docs/data/material/components/portal/portal.md +++ b/docs/data/material/components/portal/portal.md @@ -14,6 +14,6 @@ githubLabel: 'component: Portal' :::warning Please refer to the [Portal](/base-ui/react-portal/) component page in the MUI Base docs for demos and details on usage. -Portal is a part of the standalone [MUI Base](/base-ui/) component library. +Portal is a part of the standalone MUI Base component library. It is currently re-exported from `@mui/material` for your convenience, but it will be removed from this package in a future major version after MUI Base gets a stable release. ::: diff --git a/docs/data/material/components/textarea-autosize/textarea-autosize.md b/docs/data/material/components/textarea-autosize/textarea-autosize.md index cc0f203a61df93..be947db10d8717 100644 --- a/docs/data/material/components/textarea-autosize/textarea-autosize.md +++ b/docs/data/material/components/textarea-autosize/textarea-autosize.md @@ -14,6 +14,6 @@ githubLabel: 'component: TextareaAutosize' :::warning Please refer to the [Textarea Autosize](/base-ui/react-textarea-autosize/) component page in the MUI Base docs for demos and details on usage. -Textarea Autosize is a part of the standalone [MUI Base](/base-ui/) component library. +Textarea Autosize is a part of the standalone MUI Base component library. It is currently re-exported from `@mui/material` for your convenience, but it will be removed from this package in a future major version after MUI Base gets a stable release. ::: diff --git a/docs/data/material/getting-started/overview/overview.md b/docs/data/material/getting-started/overview/overview.md index cce86cda4ae887..f6d1a386e51db3 100644 --- a/docs/data/material/getting-started/overview/overview.md +++ b/docs/data/material/getting-started/overview/overview.md @@ -32,7 +32,7 @@ You can follow [this GitHub issue](https://github.com/mui/material-ui/issues/293 ### Material UI vs. MUI Base -Material UI and [MUI Base](/base-ui/) feature many of the same UI components, but MUI Base comes without any default styles or styling solutions. +Material UI and MUI Base feature many of the same UI components, but MUI Base comes without any default styles or styling solutions. Material UI is _comprehensive_ in that it comes packaged with default styles, and is optimized to work with [Emotion](https://emotion.sh/docs/introduction) (or [styled-components](https://styled-components.com/)). diff --git a/docs/data/system/getting-started/overview/overview.md b/docs/data/system/getting-started/overview/overview.md index e2c9f2e65bf368..4c56a1414e73ce 100644 --- a/docs/data/system/getting-started/overview/overview.md +++ b/docs/data/system/getting-started/overview/overview.md @@ -10,7 +10,7 @@ title: Overview MUI System is a set of CSS utilities to help you build custom designs more efficiently. It's used internally by libraries like [Material UI](/material-ui/), [Joy UI](/joy-ui/getting-started/). -It can also be used to style [MUI Base](/base-ui/) components. +It can also be used to style MUI Base components. MUI System gives you a set of flexible, generic wrapper components like [`Box`](/system/react-box/) and [`Container`](/system/react-container/) that can be quickly customized using the `sx` prop. This prop lets you define styles directly within the components themselves, rather than creating bulky and redundant `const` definitions with styled-components. @@ -26,7 +26,7 @@ Learn more on [the `sx` prop page](/system/getting-started/the-sx-prop/). ## MUI System vs. MUI Base -[MUI Base](/base-ui/) is a library of "unstyled" React components, while MUI System is a set of utilities for quickly applying styles to those components (as well as our other component libraries like Material UI and Joy UI). +MUI Base is a library of "unstyled" React components, while MUI System is a set of utilities for quickly applying styles to those components (as well as our other component libraries like Material UI and Joy UI). MUI Base is a standalone component library, whereas MUI System is _supplemental_ in that it's designed to be paired with MUI Base or any third-party components. See the [Custom components page](/system/getting-started/custom-components/) for details on how to use MUI System. From 01fb0a8f773842c50c32fd5498251723678eec6e Mon Sep 17 00:00:00 2001 From: Albert Yu Date: Wed, 22 Jan 2025 15:43:59 +0800 Subject: [PATCH 6/9] Update links on Joy component pages --- docs/data/joy/components/accordion/accordion.md | 1 + docs/data/joy/components/badge/badge.md | 1 - docs/data/joy/components/button/button.md | 1 - docs/data/joy/components/checkbox/checkbox.md | 1 + docs/data/joy/components/divider/divider.md | 1 + docs/data/joy/components/input/input.md | 2 +- docs/data/joy/components/menu/menu.md | 2 +- docs/data/joy/components/modal/modal.md | 1 + docs/data/joy/components/radio-button/radio-button.md | 1 + docs/data/joy/components/select/select.md | 2 +- docs/data/joy/components/slider/slider.md | 2 +- docs/data/joy/components/switch/switch.md | 2 +- docs/data/joy/components/tabs/tabs.md | 2 +- docs/data/joy/components/text-field/text-field.md | 1 + docs/data/joy/components/textarea/textarea.md | 1 - .../joy/components/toggle-button-group/toggle-button-group.md | 1 + docs/data/joy/components/tooltip/tooltip.md | 1 + 17 files changed, 14 insertions(+), 9 deletions(-) diff --git a/docs/data/joy/components/accordion/accordion.md b/docs/data/joy/components/accordion/accordion.md index 001b36fdab64d0..c1277c312680af 100644 --- a/docs/data/joy/components/accordion/accordion.md +++ b/docs/data/joy/components/accordion/accordion.md @@ -4,6 +4,7 @@ title: React Accordion component components: Accordion, AccordionDetails, AccordionGroup, AccordionSummary githubLabel: 'component: accordion' waiAria: https://www.w3.org/WAI/ARIA/apg/patterns/accordion/ +unstyled: https://base-ui.com/react/components/accordion --- # Accordion diff --git a/docs/data/joy/components/badge/badge.md b/docs/data/joy/components/badge/badge.md index e5ba349dfeaf25..25c2487f64fada 100644 --- a/docs/data/joy/components/badge/badge.md +++ b/docs/data/joy/components/badge/badge.md @@ -3,7 +3,6 @@ productId: joy-ui title: React Badge component components: Badge githubLabel: 'component: badge' -unstyled: /base-ui/react-badge/ --- # Badge diff --git a/docs/data/joy/components/button/button.md b/docs/data/joy/components/button/button.md index b6bed946b9590a..e74eb854d02080 100644 --- a/docs/data/joy/components/button/button.md +++ b/docs/data/joy/components/button/button.md @@ -4,7 +4,6 @@ title: React Button component components: Button, IconButton githubLabel: 'component: button' waiAria: https://www.w3.org/WAI/ARIA/apg/patterns/button/ -unstyled: /base-ui/react-button/ --- # Button diff --git a/docs/data/joy/components/checkbox/checkbox.md b/docs/data/joy/components/checkbox/checkbox.md index 4583812b0d8664..1f0d1698b776ec 100644 --- a/docs/data/joy/components/checkbox/checkbox.md +++ b/docs/data/joy/components/checkbox/checkbox.md @@ -4,6 +4,7 @@ title: React Checkbox component components: Checkbox githubLabel: 'component: checkbox' waiAria: https://www.w3.org/WAI/ARIA/apg/patterns/checkbox/ +unstyled: https://base-ui.com/react/components/checkbox --- # Checkbox diff --git a/docs/data/joy/components/divider/divider.md b/docs/data/joy/components/divider/divider.md index 60917da7cbab5f..2f56d0d77e0fd6 100644 --- a/docs/data/joy/components/divider/divider.md +++ b/docs/data/joy/components/divider/divider.md @@ -3,6 +3,7 @@ productId: joy-ui title: React Divider component components: Divider githubLabel: 'component: divider' +unstyled: https://base-ui.com/react/components/separator --- # Divider diff --git a/docs/data/joy/components/input/input.md b/docs/data/joy/components/input/input.md index 27575fa6d3bca4..433c0a9f69fe4b 100644 --- a/docs/data/joy/components/input/input.md +++ b/docs/data/joy/components/input/input.md @@ -2,7 +2,7 @@ productId: joy-ui title: React Input component components: FormControl, FormHelperText, FormLabel, Input -unstyled: /base-ui/react-input/ +unstyled: https://base-ui.com/react/components/input --- # Input diff --git a/docs/data/joy/components/menu/menu.md b/docs/data/joy/components/menu/menu.md index 48382e99f39fd1..b76b35c12afe90 100644 --- a/docs/data/joy/components/menu/menu.md +++ b/docs/data/joy/components/menu/menu.md @@ -4,7 +4,7 @@ title: React Menu component components: Menu, MenuItem, MenuList, MenuButton githubLabel: 'component: menu' waiAria: https://www.w3.org/WAI/ARIA/apg/patterns/menu-button/ -unstyled: /base-ui/react-menu/ +unstyled: https://base-ui.com/react/components/menu --- # Menu diff --git a/docs/data/joy/components/modal/modal.md b/docs/data/joy/components/modal/modal.md index fd7ff920193f08..5a085d57e4634c 100644 --- a/docs/data/joy/components/modal/modal.md +++ b/docs/data/joy/components/modal/modal.md @@ -4,6 +4,7 @@ title: React Modal component components: Modal, ModalClose, ModalDialog, ModalOverflow, DialogTitle, DialogContent, DialogActions githubLabel: 'component: modal' waiAria: https://www.w3.org/WAI/ARIA/apg/patterns/dialog-modal/ +unstyled: https://base-ui.com/react/components/dialog --- # Modal diff --git a/docs/data/joy/components/radio-button/radio-button.md b/docs/data/joy/components/radio-button/radio-button.md index b0726b188a1706..215d0559056684 100644 --- a/docs/data/joy/components/radio-button/radio-button.md +++ b/docs/data/joy/components/radio-button/radio-button.md @@ -4,6 +4,7 @@ title: React Radio Button component components: Radio, RadioGroup githubLabel: 'component: radio' waiAria: https://www.w3.org/WAI/ARIA/apg/patterns/radio/ +unstyled: https://base-ui.com/react/components/radio --- # Radio diff --git a/docs/data/joy/components/select/select.md b/docs/data/joy/components/select/select.md index ecfd4ace80361b..4b984c5e0168dd 100644 --- a/docs/data/joy/components/select/select.md +++ b/docs/data/joy/components/select/select.md @@ -4,7 +4,7 @@ title: React Select component components: Select, Option githubLabel: 'component: select' waiAria: https://www.w3.org/WAI/ARIA/apg/patterns/combobox/examples/combobox-select-only/ -unstyled: /base-ui/react-select/ +unstyled: https://base-ui.com/react/components/select --- # Select diff --git a/docs/data/joy/components/slider/slider.md b/docs/data/joy/components/slider/slider.md index 795077148638bb..5b99afbc3de236 100644 --- a/docs/data/joy/components/slider/slider.md +++ b/docs/data/joy/components/slider/slider.md @@ -3,7 +3,7 @@ productId: joy-ui title: React Slider component components: Slider githubLabel: 'component: slider' -unstyled: /base-ui/react-slider/ +unstyled: https://base-ui.com/react/components/slider --- # Slider diff --git a/docs/data/joy/components/switch/switch.md b/docs/data/joy/components/switch/switch.md index be49a207cf053f..d2f3c3bf711e08 100644 --- a/docs/data/joy/components/switch/switch.md +++ b/docs/data/joy/components/switch/switch.md @@ -3,7 +3,7 @@ productId: joy-ui title: React Switch component components: Switch githubLabel: 'component: switch' -unstyled: /base-ui/react-switch/ +unstyled: https://base-ui.com/react/components/switch --- # Switch diff --git a/docs/data/joy/components/tabs/tabs.md b/docs/data/joy/components/tabs/tabs.md index a0370ad6719bde..932f7665681b40 100644 --- a/docs/data/joy/components/tabs/tabs.md +++ b/docs/data/joy/components/tabs/tabs.md @@ -4,7 +4,7 @@ title: React Tabs component components: Tab, TabList, TabPanel, Tabs githubLabel: 'component: tabs' waiAria: https://www.w3.org/WAI/ARIA/apg/patterns/tabs/ -unstyled: /base-ui/react-tabs/ +unstyled: https://base-ui.com/react/components/menu --- # Tabs diff --git a/docs/data/joy/components/text-field/text-field.md b/docs/data/joy/components/text-field/text-field.md index d2adcae1ab4a5f..6ea1ebedce4ddd 100644 --- a/docs/data/joy/components/text-field/text-field.md +++ b/docs/data/joy/components/text-field/text-field.md @@ -2,6 +2,7 @@ productId: joy-ui title: React Text Field component githubLabel: 'component: text field' +unstyled: https://base-ui.com/react/components/field --- # Text Field diff --git a/docs/data/joy/components/textarea/textarea.md b/docs/data/joy/components/textarea/textarea.md index c51b872cad7e76..3302bdfac3d7cb 100644 --- a/docs/data/joy/components/textarea/textarea.md +++ b/docs/data/joy/components/textarea/textarea.md @@ -3,7 +3,6 @@ productId: joy-ui title: React Textarea component components: Textarea githubLabel: 'component: TextareaAutosize' -unstyled: /base-ui/react-textarea-autosize/ --- # Textarea diff --git a/docs/data/joy/components/toggle-button-group/toggle-button-group.md b/docs/data/joy/components/toggle-button-group/toggle-button-group.md index b4d7a2322796f5..94ae80b5402e58 100644 --- a/docs/data/joy/components/toggle-button-group/toggle-button-group.md +++ b/docs/data/joy/components/toggle-button-group/toggle-button-group.md @@ -3,6 +3,7 @@ productId: joy-ui title: React Toggle Button Group component githubLabel: 'component: toggle button' components: ToggleButtonGroup, Button, IconButton +unstyled: https://base-ui.com/react/components/toggle-group --- # Toggle Button Group diff --git a/docs/data/joy/components/tooltip/tooltip.md b/docs/data/joy/components/tooltip/tooltip.md index 958b6ce3ab25e4..c00e1d433d30b2 100644 --- a/docs/data/joy/components/tooltip/tooltip.md +++ b/docs/data/joy/components/tooltip/tooltip.md @@ -4,6 +4,7 @@ title: React Tooltip component components: Tooltip githubLabel: 'component: tooltip' waiAria: https://www.w3.org/WAI/ARIA/apg/patterns/tooltip/ +unstyled: https://base-ui.com/react/components/tooltip --- # Tooltip From 18cac5fd1720a246647d9ab08b226e750e2467c7 Mon Sep 17 00:00:00 2001 From: Albert Yu Date: Wed, 22 Jan 2025 18:43:25 +0800 Subject: [PATCH 7/9] Update core page --- docs/src/components/productCore/CoreProducts.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/components/productCore/CoreProducts.tsx b/docs/src/components/productCore/CoreProducts.tsx index 0706a0b44ea88e..74d87fb31f3146 100644 --- a/docs/src/components/productCore/CoreProducts.tsx +++ b/docs/src/components/productCore/CoreProducts.tsx @@ -37,10 +37,10 @@ const content = [ }, { icon: , - title: 'MUI Base', + title: 'Base UI', description: - "A library of unstyled React components and low-level hooks. With MUI Base, you gain complete control over your app's CSS and accessibility features.", - link: '/base-ui/', + 'Unstyled UI components for building accessible web apps and design systems, focusing on accessibility, performance, and developer experience.', + link: 'https://base-ui.com', }, { icon: , From e866f6ed4f47874a334bcb03ef8724c8aa662464 Mon Sep 17 00:00:00 2001 From: Albert Yu Date: Wed, 22 Jan 2025 19:32:32 +0800 Subject: [PATCH 8/9] Remove MUI base card on core page --- docs/src/components/productCore/CoreProducts.tsx | 7 ------- 1 file changed, 7 deletions(-) diff --git a/docs/src/components/productCore/CoreProducts.tsx b/docs/src/components/productCore/CoreProducts.tsx index 74d87fb31f3146..b253fb1311f3c8 100644 --- a/docs/src/components/productCore/CoreProducts.tsx +++ b/docs/src/components/productCore/CoreProducts.tsx @@ -35,13 +35,6 @@ const content = [ "An open-source React component library that implements MUI's own in-house design principles.", link: '/joy-ui/getting-started/', }, - { - icon: , - title: 'Base UI', - description: - 'Unstyled UI components for building accessible web apps and design systems, focusing on accessibility, performance, and developer experience.', - link: 'https://base-ui.com', - }, { icon: , title: 'MUI System', From fff310a186a2fcb30e52147db24156873ee4890b Mon Sep 17 00:00:00 2001 From: Albert Yu Date: Wed, 22 Jan 2025 19:37:50 +0800 Subject: [PATCH 9/9] Tweak grid on /core --- docs/src/components/productCore/CoreProducts.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/src/components/productCore/CoreProducts.tsx b/docs/src/components/productCore/CoreProducts.tsx index b253fb1311f3c8..6f1adb0f36e10f 100644 --- a/docs/src/components/productCore/CoreProducts.tsx +++ b/docs/src/components/productCore/CoreProducts.tsx @@ -4,7 +4,6 @@ import Section from 'docs/src/layouts/Section'; import { InfoCard } from '@mui/docs/InfoCard'; import { Theme } from '@mui/material/styles'; import SvgMuiLogomark from 'docs/src/icons/SvgMuiLogomark'; -import SvgBaseUiLogo from 'docs/src/icons/SvgBaseUiLogo'; import StyleRoundedIcon from '@mui/icons-material/StyleRounded'; import WebRoundedIcon from '@mui/icons-material/WebRounded'; @@ -49,7 +48,7 @@ export default function CoreProducts() {
{content.map(({ icon, title, description, link }) => ( - +