-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
38 lines (33 loc) · 1.33 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
<!DOCTYPE html>
<html>
<head>
<!-- Encoding -->
<meta charset="utf-8">
<!-- Responsiveness -->
<meta content="width=device-width, initial-scale=1" name="viewport">
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link rel="alternate icon" type="image/x-icon" href="/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<!-- Primary Meta Tags -->
<title>OpScan</title>
<meta name="title" content="OpScan" />
<meta name="description" content="Multichain UserOp search" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://op.scope.sh/" />
<meta property="og:title" content="OpScan" />
<meta property="og:description" content="Multichain UserOp search" />
<meta property="og:image" content="https://op.scope.sh/social.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://op.scope.sh/" />
<meta property="twitter:title" content="OpScan" />
<meta property="twitter:description" content="Multichain UserOp search" />
<meta property="twitter:image" content="https://op.scope.sh/social.png" />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>