-
-
Notifications
You must be signed in to change notification settings - Fork 32.5k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
[website] Add blog link to # table #43123
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -10,6 +10,7 @@ import Tooltip from '@mui/material/Tooltip'; | |||||
import InfoOutlinedIcon from '@mui/icons-material/InfoOutlined'; | ||||||
import { useRouter } from 'next/router'; | ||||||
import KeyboardArrowRightRounded from '@mui/icons-material/KeyboardArrowRightRounded'; | ||||||
import OpenInNewRoundedIcon from '@mui/icons-material/OpenInNewRounded'; | ||||||
import LaunchRounded from '@mui/icons-material/LaunchRounded'; | ||||||
import UnfoldMoreRounded from '@mui/icons-material/UnfoldMoreRounded'; | ||||||
import { Link } from '@mui/docs/Link'; | ||||||
|
@@ -149,14 +150,33 @@ export function PlanPrice(props: PlanPriceProps) { | |||||
{priceUnit} | ||||||
</Typography> | ||||||
</Box> | ||||||
<Box sx={{ minHeight: planPriceMinHeight }}> | ||||||
<Box | ||||||
sx={{ | ||||||
display: 'flex', | ||||||
flexDirection: 'column', | ||||||
alignItems: 'center', | ||||||
gap: 2, | ||||||
mb: 2, | ||||||
minHeight: planPriceMinHeight, | ||||||
}} | ||||||
> | ||||||
{(annual || monthlyDisplay) && ( | ||||||
<Typography variant="body2" sx={{ color: 'text.secondary', textAlign: 'center' }}> | ||||||
{priceExplanation} | ||||||
</Typography> | ||||||
)} | ||||||
<Typography variant="body2" sx={{ color: 'text.secondary', textAlign: 'center', mb: 3 }}> | ||||||
{'No additional fee beyond 10 devs.'} | ||||||
|
||||||
<Typography variant="body2" sx={{ color: 'text.secondary', textAlign: 'center' }}> | ||||||
No extra fees for orders with over 10 devs | ||||||
<span> | ||||||
<Tooltip title="Our # policies are changing. Read more on our blog."> | ||||||
<Link href="https://mui.com/#"> | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Addressed in #43141 |
||||||
by Aug 30 | ||||||
<OpenInNewRoundedIcon sx={{ fontSize: '16px', ml: 0.5 }} /> | ||||||
</Link> | ||||||
</Tooltip> | ||||||
</span> | ||||||
. | ||||||
</Typography> | ||||||
</Box> | ||||||
</React.Fragment> | ||||||
|
@@ -217,14 +237,32 @@ export function PlanPrice(props: PlanPriceProps) { | |||||
{priceUnit} | ||||||
</Typography> | ||||||
</Box> | ||||||
<Box sx={{ minHeight: planPriceMinHeight }}> | ||||||
<Box | ||||||
sx={{ | ||||||
display: 'flex', | ||||||
flexDirection: 'column', | ||||||
alignItems: 'center', | ||||||
gap: 2, | ||||||
mb: 2, | ||||||
minHeight: planPriceMinHeight, | ||||||
}} | ||||||
> | ||||||
{(annual || monthlyDisplay) && ( | ||||||
<Typography variant="body2" sx={{ color: 'text.secondary', textAlign: 'center' }}> | ||||||
{priceExplanation} | ||||||
</Typography> | ||||||
)} | ||||||
<Typography variant="body2" sx={{ color: 'text.secondary', textAlign: 'center', mb: 2 }}> | ||||||
🐦 Early bird special (25% off). | ||||||
<Typography variant="body2" sx={{ color: 'text.secondary', textAlign: 'center' }}> | ||||||
🐦 Early Bird: <strong>25% off</strong> if ordered | ||||||
<span> | ||||||
<Tooltip title="Our # policies are changing. Read more on our blog."> | ||||||
<Link href="https://mui.com/#"> | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Addressed in #43141 |
||||||
by Aug 30 | ||||||
<OpenInNewRoundedIcon sx={{ fontSize: '16px', ml: 0.5 }} />{' '} | ||||||
</Link> | ||||||
</Tooltip> | ||||||
</span> | ||||||
. | ||||||
</Typography> | ||||||
</Box> | ||||||
</React.Fragment> | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@joserodolfofreitas let me know which link we should have here, I'm using this as a placeholder for now