|
|
|
@ -21,7 +21,6 @@ const Projects = React.memo(({
|
|
|
|
return (
|
|
|
|
return (
|
|
|
|
<Container className={styles.cardsWrapper}>
|
|
|
|
<Container className={styles.cardsWrapper}>
|
|
|
|
<Grid className={styles.gridFix}>
|
|
|
|
<Grid className={styles.gridFix}>
|
|
|
|
<Grid.Row>
|
|
|
|
|
|
|
|
{items.map((item) => (
|
|
|
|
{items.map((item) => (
|
|
|
|
<Grid.Column key={item.id} mobile={8} computer={4}>
|
|
|
|
<Grid.Column key={item.id} mobile={8} computer={4}>
|
|
|
|
<Link
|
|
|
|
<Link
|
|
|
|
@ -54,7 +53,6 @@ const Projects = React.memo(({
|
|
|
|
</button>
|
|
|
|
</button>
|
|
|
|
</Grid.Column>
|
|
|
|
</Grid.Column>
|
|
|
|
)}
|
|
|
|
)}
|
|
|
|
</Grid.Row>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
</Container>
|
|
|
|
</Container>
|
|
|
|
);
|
|
|
|
);
|
|
|
|
|