mirror of
https://github.com/NanmiCoder/cc-haha
synced 2026-07-15 12:53:31 +08:00
Replace Google Fonts CDN links with locally hosted woff2 files to avoid FOUT/FOIT on slow networks and ensure the app works in regions where Google is blocked. Material Symbols uses font-display: block to prevent raw icon text from flashing on load. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
18 lines
501 B
HTML
18 lines
501 B
HTML
<!doctype html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Claude Code Companion</title>
|
|
<!-- Fonts are self-hosted in /fonts/ and declared via @font-face in globals.css -->
|
|
<style>
|
|
/* Prevent white flash on load */
|
|
html { background: #FAF9F5; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|