-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (32 loc) · 1.8 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Search for a Solana address and get its data" />
<meta name="keywords" content="Solana, Address, Searcher" />
<meta name="author" content="Leandro Gavidia Santamaria" />
<meta name="robots" content="index,follow,translate" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@androgavidia" />
<meta name="twitter:creator" content="@androgavidia" />
<meta name="twitter:title" content="Solana address searcher" />
<meta name="twitter:description" content="Search for a Solana address and get its data" />
<meta name="twitter:image" content="https://raw.githubusercontent.com/leandrogavidia/solana-address-searcher/main/public/cover.png" />
<meta property="og:image" content="https://raw.githubusercontent.com/leandrogavidia/solana-address-searcher/main/public/cover.png" />
<meta property="og:image:alt" content="Landing page with a search input to search a Solana address" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1366" />
<meta property="og:image:height" content="768" />
<meta property="og:title" content="Solana address searcher" />
<meta property="og:description" content="Search for a Solana address and get its data" />
<meta property="og:url" content="https://solana-address-searcher.vercel.app/" />
<meta property="og:type" content="website" />
<link rel="icon" type="image/svg+xml" href="/solana-logo.svg" />
<title>Solana address searcher</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>