Some checks failed
No response / noResponse (push) Has been cancelled
CI / Continuous releases (push) Has been cancelled
CI / test-dev (macos-latest) (push) Has been cancelled
CI / test-dev (ubuntu-latest) (push) Has been cancelled
CI / test-dev (windows-latest) (push) Has been cancelled
Maintenance / main (push) Has been cancelled
Scorecards supply-chain security / Scorecards analysis (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
66 lines
1.9 KiB
TypeScript
66 lines
1.9 KiB
TypeScript
import * as React from 'react';
|
|
import Avatar from '@mui/joy/Avatar';
|
|
import Button from '@mui/joy/Button';
|
|
import Typography from '@mui/joy/Typography';
|
|
import Star from '@mui/icons-material/Star';
|
|
import TwoSidedLayout from '../components/TwoSidedLayout';
|
|
|
|
export default function HeroLeft06() {
|
|
return (
|
|
<TwoSidedLayout>
|
|
<Typography
|
|
level="h1"
|
|
sx={{
|
|
fontWeight: 'xl',
|
|
fontSize: 'clamp(1.875rem, 1.3636rem + 2.1818vw, 3rem)',
|
|
}}
|
|
>
|
|
A large headlinerer about our product features & services
|
|
</Typography>
|
|
<Typography
|
|
textColor="text.secondary"
|
|
sx={{ fontSize: 'lg', lineHeight: 'lg' }}
|
|
>
|
|
A descriptive secondary text placeholder. Use it to explain your business
|
|
offer better.
|
|
</Typography>
|
|
<Button size="lg">Get Started For Free</Button>
|
|
<Typography
|
|
endDecorator={
|
|
<React.Fragment>
|
|
<Star sx={{ color: 'warning.300' }} />
|
|
<Star sx={{ color: 'warning.300' }} />
|
|
<Star sx={{ color: 'warning.300' }} />
|
|
<Star sx={{ color: 'warning.300' }} />
|
|
<Star sx={{ color: 'warning.300' }} />
|
|
</React.Fragment>
|
|
}
|
|
sx={{ fontSize: 'xl', fontWeight: 'md', mt: 3 }}
|
|
>
|
|
5.0
|
|
</Typography>
|
|
<Typography textColor="text.secondary">
|
|
The resource and tips in Frames X are worth a fortune. My team loves the
|
|
design kits.
|
|
</Typography>
|
|
<Typography
|
|
startDecorator={<Avatar component="span" size="lg" variant="outlined" />}
|
|
sx={{ '--Typography-gap': '12px' }}
|
|
>
|
|
<b>John Seed</b>, Apple Inc.
|
|
</Typography>
|
|
<Typography
|
|
level="body-xs"
|
|
sx={{
|
|
position: 'absolute',
|
|
top: '2rem',
|
|
left: '50%',
|
|
transform: 'translateX(-50%)',
|
|
}}
|
|
>
|
|
HeroLeft06
|
|
</Typography>
|
|
</TwoSidedLayout>
|
|
);
|
|
}
|