-
Notifications
You must be signed in to change notification settings - Fork 168
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (30 loc) · 1.19 KB
/
index.html
File metadata and controls
33 lines (30 loc) · 1.19 KB
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
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<script type="module">
import { Buffer } from "buffer";
import process from "process";
window.Buffer = Buffer;
window.process = process;
</script>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="title" content="PnP Playground - Web3Auth">
<meta name="description" content="A playground to test all the features of the Web3Auth Plug and Play SDK in React.">
<meta name="keywords" content="web3auth, web3, authentication, crypto, social login, plug and play, modal sdk">
<meta name="robots" content="index, follow">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="English">
<title>PnP Playground - Web3Auth</title>
<!-- Script to ensure dark mode is applied -->
<script>
// Make sure dark mode is applied
document.documentElement.classList.add('dark');
</script>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>