Compare commits

..

No commits in common. "5b9093a6e72cbb71a6fb7c8a1fee63fe389a6c29" and "a82f1380572c1c759341956496ebf2000905ead9" have entirely different histories.

4 changed files with 30 additions and 21 deletions

View File

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

View File

@ -196,17 +196,7 @@ export const LandingPage = () => {
and verification.
</Typography>
</Typography>
<Box
display={'grid'}
gap={'25px'}
sx={{
gridTemplateColumns: {
xs: '1fr',
sm: 'repeat(2, 1fr)',
xl: 'repeat(3, 1fr)'
}
}}
>
<Box display={'grid'} gap={'25px'} gridTemplateColumns="repeat(3, 1fr)">
{cards.map((c, i) => (
<CardComponent key={i} {...c} />
))}
@ -223,14 +213,7 @@ export const LandingPage = () => {
create, sign, and verify any document from any device with a browser.
</Typography>
<Button
sx={{
fontSize: '22px',
padding: '16px 32px'
}}
variant="contained"
onClick={onSignInClick}
>
<Button variant="contained" onClick={onSignInClick}>
GET STARTED
</Button>

View File

@ -6,3 +6,31 @@
align-items: center;
justify-content: center;
}
.landingPage {
display: flex;
flex-direction: column;
align-items: center;
color: $text-color;
min-height: 80vh;
justify-content: center;
padding-top: 20px;
.loginBottomBar {
display: flex;
justify-content: center;
align-items: center;
padding: 10px;
background-color: rgba(255, 255, 255, 0.7);
border-top: 1px solid rgba(0, 0, 0, 0.096);
position: fixed;
bottom: 0;
left: 0;
right: 0;
.loginBtn {
// margin-top: 20px;
min-width: 200px;
}
}
}

View File

@ -24,7 +24,6 @@ export const theme = extendTheme({
MuiButton: {
styleOverrides: {
root: {
transition: 'ease 0.4s',
padding: '10px 20px',
fontSize: '14px',
fontWeight: 'bold',