Landing page - new design implementation #122

Merged
b merged 45 commits from issue-21 into staging 2024-07-31 13:06:58 +00:00
2 changed files with 12 additions and 1 deletions
Showing only changes of commit 87e4536713 - Show all commits

View File

@ -32,6 +32,7 @@
flex-direction: column; flex-direction: column;
gap: 25px; gap: 25px;
word-break: break-word;
} }
.icon { .icon {

View File

@ -196,7 +196,17 @@ export const LandingPage = () => {
and verification. and verification.
</Typography> </Typography>
</Typography> </Typography>
<Box display={'grid'} gap={'25px'} gridTemplateColumns="repeat(3, 1fr)"> <Box
display={'grid'}
gap={'25px'}
sx={{
gridTemplateColumns: {
xs: '1fr',
sm: 'repeat(2, 1fr)',
xl: 'repeat(3, 1fr)'
}
}}
>
{cards.map((c, i) => ( {cards.map((c, i) => (
<CardComponent key={i} {...c} /> <CardComponent key={i} {...c} />
))} ))}