afterimage-terminal / index.html
trytax's picture
Initialize static space
6361c54 verified
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>afterimage-terminal</title>
<style>
:root { color-scheme: dark; }
body {
margin: 0; min-height: 100vh; display: grid; place-items: center;
background: radial-gradient(circle at top, #1c1630, #09090f 60%);
color: #d6d6ff; font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.card { max-width: 720px; padding: 32px; margin: 24px; border: 1px solid #2a2a44; border-radius: 20px;
background: rgba(12,12,20,.72); box-shadow: 0 0 50px rgba(104, 79, 255, .12); }
h1 { margin-top: 0; font-size: 2rem; }
.muted { color: #9ba0c7; }
code { color: #98f5e1; }
</style>
</head>
<body>
<div class="card">
<h1>afterimage-terminal</h1>
<p class="muted">A static placeholder space for future experiments.</p>
<p>This page is intentionally minimal: part landing page, part signal flare.</p>
<p>Current state: <code>building strange things slowly</code></p>
<p class="muted">Maintained by <strong>trytax</strong>.</p>
</div>
</body>
</html>