-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: Hero section * fix: lint * feat: add "Watch demo" play button * fix: control video play * feat: add a bottom gradient over the paused video * styles: fix border-radius on video * feat: temporarily use /wallet-new slug because page path conflct with the current version * feat: commonCMS/Marquee * feat: generic Card grid * feat: declare content in wallet.json * fix: undo unrelated change * fix: do not render the component without `items` * fix: remove conditional operator
- Loading branch information
1 parent
a934a20
commit a1b6ecb
Showing
6 changed files
with
101 additions
and
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import { Container, Grid } from '@mui/material' | ||
import type { BaseBlock } from '@/components/Home/types' | ||
import layoutCss from '@/components/common/styles.module.css' | ||
import getComponentByName from '@/lib/getComponentByName' | ||
|
||
const BigCardsGrid = ({ items }: { items: Array<BaseBlock['items'] & { component: string }> }) => { | ||
if (!items || !items.length) return null | ||
|
||
return ( | ||
<Container className={layoutCss.containerShort}> | ||
<Grid container spacing={{ xs: '30px', xl: '50px' }}> | ||
{items.map((item, index) => { | ||
const { component } = item | ||
|
||
const CardComponent = getComponentByName(component, () => <></>) | ||
|
||
return ( | ||
<Grid key={index} item xs={12} md={6}> | ||
<CardComponent {...item} /> | ||
</Grid> | ||
) | ||
})} | ||
</Grid> | ||
</Container> | ||
) | ||
} | ||
|
||
export default BigCardsGrid |
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,19 @@ | ||
import { Typography } from '@mui/material' | ||
import type { BaseBlock } from '@/components/Home/types' | ||
import css from './styles.module.css' | ||
|
||
const BigImageCard = ({ caption, title, text, image }: BaseBlock) => ( | ||
<div className={css.card}> | ||
<Typography variant="caption">{caption}</Typography> | ||
|
||
<img {...image} className={css.image} /> | ||
|
||
<Typography variant="h4" className={css.title}> | ||
{title} | ||
</Typography> | ||
|
||
{text ? <Typography color="primary.light">{text}</Typography> : null} | ||
</div> | ||
) | ||
|
||
export default BigImageCard |
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,26 @@ | ||
.card { | ||
outline: 1px solid var(--mui-palette-border-light); | ||
border-radius: 16px; | ||
padding: 16px; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: flex-start; | ||
text-align: center; | ||
height: 100%; | ||
} | ||
|
||
.image { | ||
width: 240px; | ||
} | ||
|
||
.title { | ||
width: 80%; | ||
margin-bottom: 24px; | ||
} | ||
|
||
@media (min-width: 600px) { | ||
.card { | ||
padding: 32px; | ||
} | ||
} |
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 |
---|---|---|
@@ -1,11 +1,4 @@ | ||
import walletContent from '@/content/wallet.json' | ||
import type { getStaticProps } from '@/pages/wallet' | ||
import type { InferGetStaticPropsType } from 'next' | ||
import ChainsContext from '@/contexts/ChainsContext' | ||
import PageContent from '../common/PageContent' | ||
|
||
export const Wallet = (props: InferGetStaticPropsType<typeof getStaticProps>) => ( | ||
<ChainsContext.Provider value={props.chainsData}> | ||
<PageContent content={walletContent} path="wallet.json" /> | ||
</ChainsContext.Provider> | ||
) | ||
export const Wallet = () => <PageContent content={walletContent} path="wallet.json" /> |
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
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 |
---|---|---|
@@ -1,19 +1,6 @@ | ||
import type { InferGetStaticPropsType, NextPage } from 'next' | ||
import type { NextPage } from 'next' | ||
import { Wallet } from '@/components/Wallet' | ||
import { loadChainsData } from '@/lib/loadChainsData' | ||
|
||
const WalletPage: NextPage<InferGetStaticPropsType<typeof getStaticProps>> = (props) => { | ||
return <Wallet {...props} /> | ||
} | ||
|
||
export async function getStaticProps() { | ||
const chainsData = await loadChainsData() | ||
|
||
return { | ||
props: { | ||
chainsData, | ||
}, | ||
} | ||
} | ||
const WalletPage: NextPage = () => <Wallet /> | ||
|
||
export default WalletPage |