index.html is one self-contained page. Nothing here executes, so an image, a CR, a tag and a pod are four moving parts standing between a static file and a browser. deploy.yml now enqueues, syncs, and flips live -- the same three steps every other Hanzo site uses. out/ is ASSEMBLED rather than built: index.html plus hz.js, the script-tag form of @hanzo/event, copied out of node_modules. That is why @hanzo/event is a devDependency here. It is not vendored and not loaded from a public CDN: the lockfile decides which version of the telemetry client ships, and the only script this page loads stays same-origin. hz.js posts to the same api.hanzo.ai/v1/event as every bundled surface, so this page counts on the one stream instead of being the one surface nobody measures. The Dockerfile stays until hanzoai/universe retires the App CR and DNS moves -- deleting the recipe for the thing currently serving would be a half-migration. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
134 lines
3.7 KiB
HTML
134 lines
3.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Hanzo AI Logo</title>
|
|
<meta name="description" content="Hanzo AI official logos and marks">
|
|
<style>
|
|
:root {
|
|
--bg: #0a0a0a;
|
|
--fg: #fafafa;
|
|
--muted: #71717a;
|
|
--accent: #6366f1;
|
|
--border: #27272a;
|
|
}
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
background: var(--bg);
|
|
color: var(--fg);
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 2rem;
|
|
}
|
|
.container { max-width: 800px; text-align: center; }
|
|
h1 {
|
|
font-size: 2.5rem;
|
|
font-weight: 700;
|
|
margin-bottom: 0.5rem;
|
|
letter-spacing: -0.02em;
|
|
}
|
|
.tagline {
|
|
font-size: 1.25rem;
|
|
color: var(--muted);
|
|
margin-bottom: 3rem;
|
|
}
|
|
.logo-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
gap: 2rem;
|
|
margin-bottom: 3rem;
|
|
}
|
|
.logo-card {
|
|
background: var(--border);
|
|
border-radius: 12px;
|
|
padding: 2rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 150px;
|
|
}
|
|
.logo-card.light { background: #fafafa; }
|
|
.logo-placeholder {
|
|
font-size: 3rem;
|
|
font-weight: 700;
|
|
letter-spacing: -0.05em;
|
|
}
|
|
.formats {
|
|
display: flex;
|
|
gap: 1rem;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
margin-bottom: 2rem;
|
|
}
|
|
.format {
|
|
padding: 0.5rem 1rem;
|
|
background: var(--border);
|
|
border-radius: 6px;
|
|
font-size: 0.875rem;
|
|
color: var(--muted);
|
|
}
|
|
.links { display: flex; gap: 1rem; justify-content: center; }
|
|
a {
|
|
color: var(--accent);
|
|
text-decoration: none;
|
|
padding: 0.75rem 1.5rem;
|
|
border: 1px solid var(--border);
|
|
border-radius: 8px;
|
|
transition: all 0.2s;
|
|
}
|
|
a:hover {
|
|
background: var(--accent);
|
|
color: var(--bg);
|
|
border-color: var(--accent);
|
|
}
|
|
.footer {
|
|
position: fixed;
|
|
bottom: 2rem;
|
|
color: var(--muted);
|
|
font-size: 0.875rem;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Hanzo AI Logo</h1>
|
|
<p class="tagline">Official logos and marks</p>
|
|
|
|
<div class="logo-grid">
|
|
<div class="logo-card">
|
|
<span class="logo-placeholder" style="color: var(--fg);">H</span>
|
|
</div>
|
|
<div class="logo-card light">
|
|
<span class="logo-placeholder" style="color: #0a0a0a;">H</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="formats">
|
|
<span class="format">SVG</span>
|
|
<span class="format">PNG</span>
|
|
<span class="format">ICO</span>
|
|
<span class="format">PDF</span>
|
|
</div>
|
|
|
|
<div class="links">
|
|
<a href="https://github.com/hanzoai/logo">Download All</a>
|
|
<a href="https://github.com/hanzoai/brand">Brand Guidelines</a>
|
|
</div>
|
|
</div>
|
|
<div class="footer">© 2025 Hanzo AI. All rights reserved.</div>
|
|
|
|
<!-- hz.js is the script-tag form of @hanzo/event — the SAME client and the
|
|
SAME wire as every bundled Hanzo surface, POSTing to api.hanzo.ai/v1/event.
|
|
This page has no bundler, so it gets the script rather than the module.
|
|
It is served from /hz.js, not a public CDN: CI copies it out of
|
|
node_modules at build time, so the lockfile decides which version ships and
|
|
the only script this page loads is same-origin. -->
|
|
<script async src="/hz.js" data-product="logo" data-host="https://api.hanzo.ai"></script>
|
|
</body>
|
|
</html>
|