Files
antonym/index.html
Dorian fd79069bf7 feat: splash redesign — logo crossfade to viewport-filling tagline
- Logo draws in centered, then fades out
- Tagline replaces logo in viewport center
- Bebas Neue (condensed hipster block) for main words
- Playfair Display italic 900 for PSYOP in Bitcoin orange
- Desktop: one line. Tablet (900px): 2 lines. Mobile (500px): 4 lines
- Words slam in with blur-to-sharp + scaleY bounce
- PSYOP lands with extra bounce-slam keyframes

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-17 00:57:14 +00:00

17 lines
643 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/logos/logo.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Antonym</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=Bebas+Neue&family=Playfair+Display:ital,wght@1,900&display=swap" rel="stylesheet" />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>