forked from mui/material-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
82052e6
commit b4ae113
Showing
5 changed files
with
93 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
import * as React from 'react'; | ||
import Box from '@mui/material/Box'; | ||
import Button from '@mui/material/Button'; | ||
import Typography from '@mui/material/Typography'; | ||
import KeyboardArrowRightRounded from '@mui/icons-material/KeyboardArrowRightRounded'; | ||
import Link from 'docs/src/modules/components/Link'; | ||
import GradientText from 'docs/src/components/typography/GradientText'; | ||
import ROUTES from 'docs/src/route'; | ||
import Section from 'docs/src/layouts/Section'; | ||
import SectionHeadline from 'docs/src/components/typography/SectionHeadline'; | ||
|
||
export default function AboutEnd() { | ||
return ( | ||
<Section bg="gradient" sx={{ p: { xs: 4, sm: 8 } }}> | ||
<Box | ||
sx={{ | ||
display: 'flex', | ||
flexDirection: 'column', | ||
alignItems: 'center', | ||
position: 'relative', | ||
zIdex: 10, | ||
}} | ||
> | ||
<SectionHeadline | ||
alwaysCenter | ||
overline="Join us" | ||
title={ | ||
<Typography variant="h2" sx={{ mt: 1, maxWidth: 600, mx: 'auto' }}> | ||
Build <GradientText>the next generation</GradientText> of tools for UI development | ||
</Typography> | ||
} | ||
description="We aim high at enabling developers & designers to bring stunning UIs to life with unrivalled speed and ease." | ||
/> | ||
<Button | ||
component={Link} | ||
noLinkStyle | ||
href={ROUTES.careers} | ||
endIcon={<KeyboardArrowRightRounded fontSize="small" />} | ||
variant="contained" | ||
size="medium" | ||
sx={{ width: { xs: '100%', sm: 'fit-content' } }} | ||
> | ||
View careers | ||
</Button> | ||
</Box> | ||
<Box | ||
component="img" | ||
src="/static/branding/about/team-globe-distribution-light.png" | ||
alt="Illustration of MUI's pricing page." | ||
loading="lazy" | ||
width="1100" | ||
sx={(theme) => ({ | ||
mt: -8, | ||
display: { xs: 'none', sm: 'block' }, | ||
width: { sm: '100%' }, | ||
...theme.applyDarkStyles({ | ||
content: 'url(/static/branding/about/team-globe-distribution-dark.png)', | ||
}), | ||
})} | ||
/> | ||
</Section> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters