-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (36 loc) · 1.85 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
33
34
35
36
37
38
39
40
41
42
43
<!doctype html>
<html lang="en" class="light">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<!-- HTML Meta Tags -->
<title>EFP Demo</title>
<meta name="description" content="Ethereum Follow Protocol Demo" />
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://demo.ethfollow.xyz" />
<meta property="og:type" content="website" />
<meta property="og:title" content="EFP Demo" />
<meta property="og:description" content="Ethereum Follow Protocol Demo" />
<meta property="og:image" content="https://demo.ethfollow.xyz/preview.png" />
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="demo.ethfollow.xyz" />
<meta property="twitter:url" content="https://demo.ethfollow.xyz" />
<meta name="twitter:title" content="EFP Demo" />
<meta name="twitter:description" content="Ethereum Follow Protocol Demo" />
<meta name="twitter:image" content="https://demo.ethfollow.xyz/preview.png" />
<link rel="icon" href="/favicon.ico" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon.ico" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;700;900&display=swap" rel="stylesheet" />
</head>
<body class="mx-auto max-w-3xl sm:bg-gray-200">
<div id="root" class="m-auto max-w-4xl pb-6 py-8 text-center"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>