-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (50 loc) · 3.03 KB
/
Copy pathindex.html
File metadata and controls
56 lines (50 loc) · 3.03 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary Meta Tags -->
<title>BlockSim - Interactive Blockchain Learning Platform</title>
<meta name="title" content="BlockSim - Interactive Blockchain Learning Platform" />
<meta name="description" content="Learn blockchain technology through interactive visualizations. Experience SHA-256 hashing, proof-of-work mining, and cryptocurrency transactions in real-time." />
<meta name="keywords" content="blockchain, cryptocurrency, bitcoin, ethereum, SHA-256, proof-of-work, mining, education, learning, interactive, visualization" />
<meta name="author" content="BlockSim" />
<meta name="theme-color" content="#0f172a" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://blocksim.vercel.app/" />
<meta property="og:title" content="BlockSim - Interactive Blockchain Learning Platform" />
<meta property="og:description" content="Learn blockchain technology through interactive visualizations. Experience SHA-256 hashing, proof-of-work mining, and cryptocurrency transactions." />
<meta property="og:image" content="https://blocksim.vercel.app/og-image.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://blocksim.vercel.app/" />
<meta property="twitter:title" content="BlockSim - Interactive Blockchain Learning" />
<meta property="twitter:description" content="Learn blockchain through interactive visualizations. SHA-256, mining, transactions & more!" />
<meta property="twitter:image" content="https://blocksim.vercel.app/og-image.png" />
<!-- Preconnect for performance -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet">
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
</head>
<body>
<noscript>
<div style="padding: 2rem; text-align: center; background: #0f172a; color: #f8fafc; min-height: 100vh; display: flex; align-items: center; justify-content: center;">
<div>
<h1>⛓️ BlockSim</h1>
<p>JavaScript is required to run this application.</p>
<p>Please enable JavaScript in your browser settings.</p>
</div>
</div>
</noscript>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>