-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 1.6 KB
/
index.html
File metadata and controls
30 lines (30 loc) · 1.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>ZAP1 Explorer - Zcash On-Chain Attestation Browser</title>
<meta name="description" content="Browse ZAP1 lifecycle attestations anchored to Zcash mainnet. Leaves, Merkle proofs, anchor history, and real-time stats." />
<link rel="icon" href="/favicon.ico" sizes="48x48" />
<link rel="icon" type="image/png" href="/logo-192.png" sizes="192x192" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<meta property="og:type" content="website" />
<meta property="og:title" content="ZAP1 Explorer - Zcash On-Chain Attestation Browser" />
<meta property="og:description" content="Browse ZAP1 lifecycle attestations anchored to Zcash mainnet." />
<meta property="og:url" content="https://explorer.frontiercompute.io/" />
<meta property="og:image" content="https://frontiercompute.io/logo.jpg" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="ZAP1 Explorer" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap" rel="stylesheet" />
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #0a0a0a; color: #d0d3d9; font-family: 'Space Grotesk', sans-serif; }
::selection { background: #c8a84e25; color: #c8a84e; }
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>