|
| 1 | +import clsx from "clsx"; |
| 2 | + |
| 3 | +import { Grid } from "ui/grid/Grid"; |
| 4 | +import { Typography } from "ui/typography/Typography"; |
| 5 | +import { Button } from "ui/button/Button"; |
| 6 | +import { Card } from "ui/card/Card"; |
| 7 | +import { Icon } from "ui/icon/Icon"; |
| 8 | + |
| 9 | +import styles from "./LatestCollection.module.scss"; |
| 10 | +import { LatestCollectionProps } from "./LatestCollection.types"; |
| 11 | + |
| 12 | +export const LatestCollection: React.FC<LatestCollectionProps> = ({ className }) => ( |
| 13 | + <div className={clsx(styles["latest-collection"], className)}> |
| 14 | + <Grid.Container> |
| 15 | + <Grid.Row justify="end"> |
| 16 | + <Grid.Col lg={8} sm={12} xs={12}> |
| 17 | + <div /> |
| 18 | + </Grid.Col> |
| 19 | + <Grid.Col lg={4} sm={12} xs={12}> |
| 20 | + <div className={styles["latest-collection__intro"]}> |
| 21 | + <Typography.Headline5>Latest Collection</Typography.Headline5> |
| 22 | + <Typography.Headline4 className={styles["latest-collection__intro--artist-name"]}> |
| 23 | + larskristo: hellheads |
| 24 | + </Typography.Headline4> |
| 25 | + <Typography.Description>31/150 Sold</Typography.Description> |
| 26 | + <Typography.Text> |
| 27 | + Lars Kristoffer Hormander’s Hellheads is the latest from its #darkart creations. Featuring an astonishing |
| 28 | + 150 items series of digital handcraft mastery. Own one of this limited art today. |
| 29 | + </Typography.Text> |
| 30 | + <Grid.Row> |
| 31 | + <Grid.Col> |
| 32 | + <Button color="secondary" size="s" variant="outlined"> |
| 33 | + See Artist |
| 34 | + </Button> |
| 35 | + </Grid.Col> |
| 36 | + </Grid.Row> |
| 37 | + </div> |
| 38 | + </Grid.Col> |
| 39 | + </Grid.Row> |
| 40 | + |
| 41 | + <section className={styles["latest-collection__grid"]}> |
| 42 | + <Grid.Row> |
| 43 | + <Grid.Col lg={2}> |
| 44 | + <Card className={styles["latest-collection__item"]}> |
| 45 | + <div className={styles["latest-collection__item--img"]}> |
| 46 | + <img |
| 47 | + src="https://blockchainassetregistry.infura-ipfs.io/ipfs/bafybeifwil5ygel6cw2kdplp5s74qeyg64wydpoiko7or42pb2n45outd4/058.JPG" |
| 48 | + alt="058" |
| 49 | + /> |
| 50 | + </div> |
| 51 | + <Card.Content> |
| 52 | + <Typography.Description>#598</Typography.Description> |
| 53 | + <div className={styles["latest-collection__item--price-row"]}> |
| 54 | + <div> |
| 55 | + <Typography.TextLead flat className={styles["latest-collection__item--price"]}> |
| 56 | + 1.75 <span>ETH</span> |
| 57 | + </Typography.TextLead> |
| 58 | + </div> |
| 59 | + <div> |
| 60 | + <Icon name="icon-expand" className={styles["latest-collection__item--expand"]} /> |
| 61 | + </div> |
| 62 | + </div> |
| 63 | + </Card.Content> |
| 64 | + </Card> |
| 65 | + </Grid.Col> |
| 66 | + </Grid.Row> |
| 67 | + </section> |
| 68 | + </Grid.Container> |
| 69 | + </div> |
| 70 | +); |
0 commit comments