synor/apps/web/index.html
Gulshan Yadav 48949ebb3f Initial commit: Synor blockchain monorepo
A complete blockchain implementation featuring:
- synord: Full node with GHOSTDAG consensus
- explorer-web: Modern React blockchain explorer with 3D DAG visualization
- CLI wallet and tools
- Smart contract SDK and example contracts (DEX, NFT, token)
- WASM crypto library for browser/mobile
2026-01-08 05:22:17 +05:30

14 lines
492 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/synor.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Synor Web Wallet - Quantum-secure cryptocurrency wallet" />
<title>Synor Wallet</title>
</head>
<body class="bg-slate-900 text-white">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>