Skip to content

Commit 37e2b70

Browse files
author
CryptoAlien66
committed
style: adjust copy
1 parent b451452 commit 37e2b70

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

UI/explore/index.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ const Explore: FC = () => {
1515
return (
1616
<ROOT spacing={{ xs: 4, sm: 6 }}>
1717
<Stack spacing={2} marginTop={{ xs: 2, sm: 8 }}>
18-
<H1>Find people in Web 3.0 world.</H1>
19-
<H3 sx={{ color: 'text.secondary' }}>Connect with key opinion leaders in ISME network.</H3>
18+
<H1>Find people in the Web3 world.</H1>
19+
<H3 sx={{ color: 'text.secondary' }}>Connect with key opinion leaders in the ISME network.</H3>
2020
</Stack>
2121
<Stack spacing={2}>
2222
<FollowGridDynamic followers={featuredPeoples} />

UI/home/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const Home: FC = () => {
3131
<Grid item xs={12} sm={5}>
3232
<Stack spacing={4}>
3333
<Stack spacing={2}>
34-
<H1>Your Decentralized Identity for Web 3.0</H1>
34+
<H1>Your Decentralized Identity for Web3</H1>
3535
<H3 sx={{ color: 'text.secondary' }}>Connect everything in the first unified social identity network</H3>
3636
</Stack>
3737
<Stack spacing={4} direction="row">

UI/profile-board/ProfileInfo/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const ProfileInfo: FC = () => {
6060
<ROOT sx={{ paddingX: 2, paddingY: 4 }}>
6161
<Head>
6262
<title>{profile.name}.isme | ISME</title>
63-
<meta name="description" content={profile.bio || 'ISME is your decentralized identity (DID) for Web 3.0'} />
63+
<meta name="description" content={profile.bio || 'ISME is your decentralized identity (DID) for Web3'} />
6464
<meta key="og:site_name" property="og:site_name" content={`${profile.name}.isme | ISME`} />
6565
<meta key="og:image" property="og:image" content={profile.avatar || 'https://isme.is/logo.svg'} />
6666
<meta

components/Header.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ export type HeaderProps = {
88
twitter?: string
99
}
1010
const Header: FC<HeaderProps> = (props) => {
11-
const title = props.title || 'ISME | Your Decentralized Identity for Web 3.0'
12-
const description = props.description || 'ISME is your decentralized identity (DID) for Web 3.0'
11+
const title = props.title || 'ISME | Your Decentralized Identity for Web3'
12+
const description = props.description || 'ISME is your decentralized identity (DID) for Web3'
1313
const ogDescription = props.ogDescription || 'Connect everything in the first unified social identity network'
1414
const image = props.image || 'https://isme.is/isme-logo.jpg'
1515
const twitter = props.twitter || '@nft3com'

0 commit comments

Comments
 (0)