Skip to content

Commit

Permalink
feat: update supported projects mentions and typos
Browse files Browse the repository at this point in the history
  • Loading branch information
DiogoSoaress committed Oct 9, 2023
1 parent df2887d commit 1e311e1
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 20 deletions.
10 changes: 5 additions & 5 deletions public/images/IdentPlanets/label.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 9 additions & 5 deletions src/components/Home/BannerTextCard/index.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import { useEffect, useRef, type ReactElement } from 'react'
import { Grid, Typography, Container, Box } from '@mui/material'
import { Grid, Typography, Container, Box, Button } from '@mui/material'

import css from './styles.module.css'
import type { BaseBlock } from '@/components/Home/types'
import { ECOSYSTEM_LINK } from '@/config/constants'

const BannerTextCard = ({ title, text }: BaseBlock): ReactElement => {
const bgRef = useRef<HTMLDivElement>(null)
Expand Down Expand Up @@ -36,15 +37,18 @@ const BannerTextCard = ({ title, text }: BaseBlock): ReactElement => {
<div className={css.gradient} ref={bgRef}>
<Container sx={{ textAlign: 'center' }}>
<Box height={{ xs: '700px', md: '1090px' }} display="flex" alignItems="center">
<Grid container justifyContent="center" flexDirection="column" alignItems="center">
<Grid container justifyContent="center" flexDirection="column" alignItems="center" gap={4}>
<Grid item md={8} xl={6}>
<Typography variant="h2" mb={4} textAlign="center">
{title}
</Typography>
<Typography variant="h2">{title}</Typography>
</Grid>
<Grid item md={6}>
<Typography>{text}</Typography>
</Grid>
<Grid item md={6}>
<Button href={ECOSYSTEM_LINK} target="_blank" rel="noreferrer" variant="contained" size="large">
Explore ecosystem
</Button>
</Grid>
</Grid>
</Box>
</Container>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Home/Intro/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const Intro = ({ title, text }: BaseBlock) => {
<Button
href={WALLET_LINK}
target="_blank"
rel="noopener noreferrer"
rel="noreferrer"
variant="contained"
color="secondary"
size="large"
Expand Down
8 changes: 4 additions & 4 deletions src/content/home.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
{
"caption": "Safe at scale",
"title": "<i>Safe</i> accounts hold and protect billions of $$$ in assets",
"text": "Previously called Gnosis Safe, <i>Safe</i> spun out with a mission to build a better standard for ownership with smart contract accounts. Since 2018, Safe has grown to support several EVM chains",
"text": "Previously called Gnosis Safe, <i>Safe</i> spun out with a mission to build a better standard for ownership with smart accounts",
"items": [
{
"title": "17M",
Expand All @@ -38,8 +38,8 @@
"component": "Home/Stats"
},
{
"title": "Available on 12+ networks",
"text": "and more, including testnets",
"title": "Available on 14+ networks",
"text": "including testnets",
"networks": [
{
"name": "Ethereum Mainnet",
Expand Down Expand Up @@ -250,7 +250,7 @@
"component": "Home/BigIconsCardGrid"
},
{
"title": "Safe <u>CORE</u> <b>powers 130+ ecosystem projects</b><br/>in every corner of web3",
"title": "Safe <u>CORE</u> <b>powers 190+ ecosystem projects</b><br/>in every corner of web3",
"text": "including projects building DAO tools, DeFi, NFT collectives and institutional custody",
"component": "Home/BannerTextCard"
},
Expand Down
27 changes: 22 additions & 5 deletions src/content/wallet.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
{
"variant": "image-text",
"title": "<b>Control and change</b> account ownership",
"text": "With adding new signers, removing old signers and replaceable account ownership, the same account is flexible for the any future needs and more secure",
"text": "With the ability to add new signers, remove old signers and replace account ownership, the same account is flexible for any future needs and more secure",
"buttons": [
{
"text": "Get started",
Expand Down Expand Up @@ -140,8 +140,8 @@
"component": "Wallet/ParallaxTxSimulation"
},
{
"title": "Available on 12+ networks",
"text": "and more, including testnets",
"title": "Available on 14+ networks",
"text": "including testnets",
"networks": [
{
"name": "Ethereum Mainnet",
Expand Down Expand Up @@ -171,6 +171,16 @@
"alt": "Arbitrum logo"
}
},
{
"name": "zkSync Era Mainnet",
"icon": {
"src": "/images/chainsLogos/ZkSyncEraLogo.png",
"alt": "zkSync Era logo"
},
"textColor": "#000000",
"backgroundColor": "#FFFFFF",
"isNew": true
},
{
"name": "Polygon",
"icon": {
Expand Down Expand Up @@ -206,13 +216,20 @@
"alt": "Arbitrum logo"
}
},
{
"name": "Polygon zkEVM",
"icon": {
"src": "/images/chainsLogos/PolygonZkEVMLogo.png",
"alt": "Polygon zkEVM logo"
},
"isNew": true
},
{
"name": "Celo",
"icon": {
"src": "/images/chainsLogos/CeloLogo.png",
"alt": "Celo logo"
},
"isNew": true
}
}
],
"component": "common/Networks"
Expand Down

0 comments on commit 1e311e1

Please sign in to comment.