Files
web3-style-guide/index.html
jamie prince e8182262b2 feat: initial web3 corporate style guide
- Extract design tokens (colors, typography, spacing) from dao-marketplace
- Build component CSS: base, card, button, forms
- Create interactive Vite showcase app with tabbed navigation
- Add README, .gitignore, AGENTS.md
- Build passes (vite v8.2.2)
2026-09-07 18:33:19 +01:00

16 lines
570 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Web3 Style Guide</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;570;620;680;760&display=swap" rel="stylesheet" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>