Skip to content

Commit 41c5921

Browse files
committed
Fix SEO component
1 parent 957e950 commit 41c5921

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

src/components/GuidesPage/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ export default function Guides({ content = {} }: GuidesInterface) {
143143
<SEO
144144
title="Tutorials"
145145
description="Tutorials to integrate, customize, and build with MetaMask developer tools."
146-
image={`${baseUrl}images/tutorialsog.jpg`}
146+
image={`${baseUrl}img/tutorialsog.jpg`}
147147
slug="/guides"
148148
/>
149149

src/components/SEO/index.tsx

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ export default function SEO(props) {
66

77
return (
88
<Head>
9-
{title ? <title>{title} | Web3Auth </title> : <title>Documentation | Web3Auth</title>}
9+
{title ? <title>{title} | MetaMask </title> : <title>Documentation | MetaMask</title>}
1010
{description ? (
1111
<meta name="description" content={description} />
1212
) : (
1313
<meta
1414
name="description"
15-
content="Web3Auth is simple, non-custodial auth infrastructure that enables Web3 wallets and applications to provide seamless user logins for both mainstream and native Web3 users."
15+
content="MetaMask is the leading self-custodial wallet. Build with the world's leading self-custodial crypto wallet through MetaMask developer documentation."
1616
/>
1717
)}
1818

@@ -21,30 +21,30 @@ export default function SEO(props) {
2121
keywords.length > 0 && (
2222
<meta
2323
name="keywords"
24-
content={`web3auth, blockchain, solana, ethereum, multi party computation, ${keywords.join(', ')}`}
24+
content={`metamask, wallet, blockchain, solana, ethereum, crypto, sdk, ${keywords.join(', ')}`}
2525
/>
2626
)
2727
) : (
2828
<meta
2929
name="keywords"
30-
content="web3auth, blockchain, web3, web3.js, ethers.js, solana, ethereum, passwordless, passwordless magic link, multi party computation, tkey, torus, web3 auth, auth"
30+
content="metamask, wallet, blockchain, web3, web3.js, ethers.js, solana, ethereum, crypto, sdk, snaps, dapp"
3131
/>
3232
)}
3333

3434
{/* Open Graph Meta Tags */}
35-
<meta property="og:site_name" content="Web3Auth" />
35+
<meta property="og:site_name" content="MetaMask" />
3636
<meta property="og:type" content="website" />
3737
{title ? (
3838
<meta property="og:title" content={title} />
3939
) : (
40-
<meta property="og:title" content="Documentation | Web3Auth" />
40+
<meta property="og:title" content="Documentation | MetaMask" />
4141
)}
4242
{description ? (
4343
<meta property="og:description" content={description} />
4444
) : (
4545
<meta
4646
property="og:description"
47-
content="Web3Auth is simple, non-custodial auth infrastructure that enables Web3 wallets and applications to provide seamless user logins for both mainstream and native Web3 users."
47+
content="MetaMask is the leading self-custodial wallet. Build with the world's leading self-custodial crypto wallet through MetaMask developer documentation."
4848
/>
4949
)}
5050
{slug ? (
@@ -58,15 +58,15 @@ export default function SEO(props) {
5858
) : (
5959
<meta
6060
property="og:image"
61-
content="http://docs.metamask.io/img/metamaskog.jpg"
61+
content="https://docs.metamask.io/img/metamaskog.jpg"
6262
/>
6363
)}
6464

6565
{/* Twitter Meta Tags */}
6666

6767
<meta name="twitter:card" content="summary_large_image" />
68-
<meta name="twitter:site" content="@Web3Auth" />
69-
<meta name="twitter:creator" content="@Web3Auth" />
68+
<meta name="twitter:site" content="@MetaMask" />
69+
<meta name="twitter:creator" content="@MetaMask" />
7070
{/* {title ? <meta name="twitter:title" content={title} /> : <meta name="twitter:title" content="Documentation | Web3Auth" />}
7171
{description ? (
7272
<meta name="twitter:description" content={description} />
@@ -81,34 +81,34 @@ export default function SEO(props) {
8181
) : (
8282
<meta
8383
name="twitter:image"
84-
content="http://docs.metamask.io/img/metamaskog.jpg"
84+
content="https://docs.metamask.io/img/metamaskog.jpg"
8585
/>
8686
)}
8787

8888
{/* Google / Search Engine Tags */}
8989
{title ? (
9090
<meta itemProp="name" content={title} />
9191
) : (
92-
<meta itemProp="name" content="Documentation | Web3Auth" />
92+
<meta itemProp="name" content="Documentation | MetaMask" />
9393
)}
9494
{description ? (
9595
<meta itemProp="description" content={description} />
9696
) : (
9797
<meta
9898
itemProp="description"
99-
content="Web3Auth is simple, non-custodial auth infrastructure that enables Web3 wallets and applications to provide seamless user logins for both mainstream and native Web3 users."
99+
content="MetaMask is the leading self-custodial wallet. Build with the world's leading self-custodial crypto wallet through MetaMask developer documentation."
100100
/>
101101
)}
102102
{image ? (
103103
<meta itemProp="image" content={image} />
104104
) : (
105105
<meta
106106
itemProp="image"
107-
content="http://docs.metamask.io/img/metamaskog.jpg"
107+
content="https://docs.metamask.io/img/metamaskog.jpg"
108108
/>
109109
)}
110110

111-
<meta name="author" content="Web3Auth" />
111+
<meta name="author" content="MetaMask" />
112112
</Head>
113113
)
114114
}

0 commit comments

Comments
 (0)