Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[website] Fix wrong link in pricing table (@zanivan) #43143

Merged
merged 3 commits into from
Aug 1, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 23 additions & 4 deletions docs/src/components/pricing/PricingTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,18 @@ export function PlanPrice(props: PlanPriceProps) {
{priceExplanation}
</Typography>
)}
<Typography variant="body2" color="text.secondary" sx={{ mb: 3 }} textAlign="center">
{'No additional fee beyond 10 devs.'}

<Typography variant="body2" sx={{ color: 'text.secondary', textAlign: 'center' }}>
No extra fees for orders with over 10 devs&nbsp;
<span>
<Tooltip title="Our pricing policies are changing. Read more on our blog.">
<Link href="/blog/mui-x-sep-2024-price-update/">
by Aug 30
<OpenInNewRoundedIcon sx={{ fontSize: '16px', ml: 0.5 }} />
</Link>
</Tooltip>
</span>
.
</Typography>
</Box>
</React.Fragment>
Expand Down Expand Up @@ -212,8 +222,17 @@ export function PlanPrice(props: PlanPriceProps) {
{priceExplanation}
</Typography>
)}
<Typography variant="body2" color="text.secondary" sx={{ mb: 2 }} textAlign="center">
🐦 Early bird special (25% off).
<Typography variant="body2" sx={{ color: 'text.secondary', textAlign: 'center' }}>
🐦 Early Bird: <strong>25% off</strong> if ordered &nbsp;
<span>
<Tooltip title="Our pricing policies are changing. Read more on our blog.">
<Link href="/blog/mui-x-sep-2024-price-update/">
by Aug 30
<OpenInNewRoundedIcon sx={{ fontSize: '16px', ml: 0.5 }} />{' '}
</Link>
</Tooltip>
</span>
.
</Typography>
</Box>
</React.Fragment>
Expand Down
Loading