Skip to content

Commit b8e48fc

Browse files
[website] Fix pricing page content (#46231)
1 parent 0d12e36 commit b8e48fc

File tree

1 file changed

+26
-13
lines changed

1 file changed

+26
-13
lines changed

docs/src/components/pricing/PricingTable.tsx

Lines changed: 26 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -429,10 +429,10 @@ function RowHead({
429429

430430
const rowHeaders: Record<string, React.ReactNode> = {
431431
// Core
432-
'MUI Base': (
432+
'Base UI': (
433433
<ColumnHead
434-
label="MUI Base"
435-
tooltip="A library of headless ('unstyled') React UI components and low-level hooks, available in @mui/base."
434+
label="Base UI"
435+
tooltip="A library of headless ('unstyled') React UI components and low-level hooks, available in @base-ui-components/react."
436436
/>
437437
),
438438
'MUI System': (
@@ -653,7 +653,12 @@ const rowHeaders: Record<string, React.ReactNode> = {
653653
'core-support': (
654654
<ColumnHead
655655
{...{
656-
label: 'Technical support for MUI Core',
656+
label: (
657+
<React.Fragment>
658+
Technical support for <Box component="span" sx={{ display: ['none', 'block'] }} />
659+
MUI Core
660+
</React.Fragment>
661+
),
657662
tooltip:
658663
'Support for MUI Core (for example Material UI) is provided by the community. MUI Core maintainers focus on solving root issues to support the community at large.',
659664
}}
@@ -662,7 +667,12 @@ const rowHeaders: Record<string, React.ReactNode> = {
662667
'x-support': (
663668
<ColumnHead
664669
{...{
665-
label: 'Technical support for MUI X',
670+
label: (
671+
<React.Fragment>
672+
Technical support for <Box component="span" sx={{ display: ['none', 'block'] }} />
673+
MUI X
674+
</React.Fragment>
675+
),
666676
tooltip:
667677
'You can ask for technical support, report bugs and submit unlimited feature requests to the advanced components. We take your subscription plan as one of the prioritization criteria.',
668678
}}
@@ -684,7 +694,10 @@ const rowHeaders: Record<string, React.ReactNode> = {
684694
),
685695
'response-time': (
686696
<ColumnHead
687-
{...{ label: 'Guaranteed response time', tooltip: 'Maximum lead time for each response.' }}
697+
{...{
698+
label: 'Guaranteed response time',
699+
tooltip: 'Maximum lead time for each response, only working days are counted.',
700+
}}
688701
/>
689702
),
690703
'pre-screening': (
@@ -737,7 +750,7 @@ const toBeDefined = (
737750

738751
const communityData: Record<string, React.ReactNode> = {
739752
// Core open-source libraries
740-
'MUI Base': yes,
753+
'Base UI': yes,
741754
'MUI System': yes,
742755
'Material UI': yes,
743756
'Joy UI': yes,
@@ -840,7 +853,7 @@ const communityData: Record<string, React.ReactNode> = {
840853

841854
const proData: Record<string, React.ReactNode> = {
842855
// Core
843-
'MUI Base': yes,
856+
'Base UI': yes,
844857
'MUI System': yes,
845858
'Material UI': yes,
846859
'Joy UI': yes,
@@ -939,12 +952,12 @@ const proData: Record<string, React.ReactNode> = {
939952
'response-time': no,
940953
'pre-screening': no,
941954
'issue-escalation': no,
942-
'security-questionnaire': <Info value="Available from 10+ devs" />,
955+
'security-questionnaire': <Info value="Available from 10+ dev" />,
943956
};
944957

945958
const premiumData: Record<string, React.ReactNode> = {
946959
// Core
947-
'MUI Base': yes,
960+
'Base UI': yes,
948961
'MUI System': yes,
949962
'Material UI': yes,
950963
'Joy UI': yes,
@@ -1365,12 +1378,12 @@ export default function PricingTable({
13651378
<RowHead startIcon={<IconImage name="product-core" width={28} height={28} />}>
13661379
MUI Core (open-source)
13671380
</RowHead>
1381+
{renderRow('Base UI')}
1382+
{divider}
13681383
{renderRow('Material UI')}
13691384
{divider}
13701385
{renderRow('Joy UI')}
13711386
{divider}
1372-
{renderRow('MUI Base')}
1373-
{divider}
13741387
{renderRow('MUI System')}
13751388
<RowHead startIcon={<IconImage name="product-advanced" width={28} height={28} />}>
13761389
MUI X (open-core)
@@ -1684,7 +1697,7 @@ export default function PricingTable({
16841697
}),
16851698
]}
16861699
>
1687-
TreeView
1700+
Tree View
16881701
</Button>
16891702
</Box>
16901703
<StyledCollapse in={treeViewCollapsed}>

0 commit comments

Comments
 (0)