Add levkin.ca design concepts (Spec, Slab, Relay, Vault).
Four static landing-page options with Vite build, cal booking, and links to sibling sites. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -0,0 +1,87 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Levkin — Relay</title>
|
||||
<meta name="description" content="Levkin — software development. Signals in, production out." />
|
||||
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
|
||||
<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=Courier+Prime:wght@400;700&display=swap" rel="stylesheet" />
|
||||
<link rel="stylesheet" href="./relay.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="grain" aria-hidden="true"></div>
|
||||
|
||||
<nav class="nav">
|
||||
<a href="/">← options</a>
|
||||
<span class="station">STN · LEV-01</span>
|
||||
</nav>
|
||||
|
||||
<main>
|
||||
<header class="header">
|
||||
<h1>Levkin Relay</h1>
|
||||
<p class="sub">Software development · signal in · production out</p>
|
||||
</header>
|
||||
|
||||
<section class="tape" aria-label="Incoming transmissions">
|
||||
<div class="tape-head">
|
||||
<span>INCOMING</span>
|
||||
<button type="button" id="decode-btn" class="decode-btn">Decode ↵</button>
|
||||
</div>
|
||||
<pre class="morse" id="morse" aria-live="polite"></pre>
|
||||
<p class="decoded hidden" id="decoded"></p>
|
||||
</section>
|
||||
|
||||
<section class="channels">
|
||||
<h2>Active lines</h2>
|
||||
<ul>
|
||||
<li>
|
||||
<span class="line-id">L-1</span>
|
||||
<span class="line-name">Custom software</span>
|
||||
<span class="line-status">open</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class="line-id">L-2</span>
|
||||
<span class="line-name">Automation</span>
|
||||
<a href="https://auto.levkin.ca" class="line-link">auto.levkin.ca</a>
|
||||
</li>
|
||||
<li>
|
||||
<span class="line-id">L-3</span>
|
||||
<span class="line-name">CaseWare</span>
|
||||
<a href="https://caseware.levkin.ca" class="line-link">caseware.levkin.ca</a>
|
||||
</li>
|
||||
<li>
|
||||
<span class="line-id">L-4</span>
|
||||
<span class="line-name">Operations</span>
|
||||
<a href="https://jobs.levkin.ca" class="line-link">jobs.levkin.ca</a>
|
||||
</li>
|
||||
<li>
|
||||
<span class="line-id">L-5</span>
|
||||
<span class="line-name">Quality engineering</span>
|
||||
<a href="https://iliadobkin.com" class="line-link">iliadobkin.com</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<section class="principles">
|
||||
<p>Every transmission handled with retries, documentation, and tests before it reaches production. Canadian. Remote.</p>
|
||||
</section>
|
||||
|
||||
<section class="send">
|
||||
<p class="send-label">Schedule transmission:</p>
|
||||
<a href="https://cal.levkin.ca/ilia/consult" class="send-addr send-cal">15 min consultation →</a>
|
||||
<p class="send-label">Or reply to:</p>
|
||||
<a href="mailto:hello@levkine.ca?subject=Relay%20enquiry" class="send-addr">hello@levkine.ca</a>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<a href="https://git.levkin.ca">git.levkin.ca</a>
|
||||
<span>levkin.ca</span>
|
||||
</footer>
|
||||
|
||||
<script src="./relay.js" type="module"></script>
|
||||
</body>
|
||||
</html>
|
||||
+205
@@ -0,0 +1,205 @@
|
||||
:root {
|
||||
--bg: #1a1814;
|
||||
--paper: #e8e0d4;
|
||||
--amber: #d4a574;
|
||||
--dim: #6b6358;
|
||||
--mono: 'Courier Prime', 'Courier New', monospace;
|
||||
}
|
||||
|
||||
* { box-sizing: border-box; margin: 0; padding: 0; }
|
||||
|
||||
body {
|
||||
font-family: var(--mono);
|
||||
background: var(--bg);
|
||||
color: var(--paper);
|
||||
min-height: 100vh;
|
||||
line-height: 1.55;
|
||||
}
|
||||
|
||||
.grain {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
pointer-events: none;
|
||||
opacity: 0.04;
|
||||
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
.nav {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
padding: 1.25rem 2rem;
|
||||
font-size: 0.75rem;
|
||||
letter-spacing: 0.1em;
|
||||
}
|
||||
|
||||
.nav a {
|
||||
color: var(--dim);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.nav a:hover { color: var(--amber); }
|
||||
|
||||
.station { color: var(--amber); }
|
||||
|
||||
main {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
max-width: 560px;
|
||||
margin: 0 auto;
|
||||
padding: 2rem 2rem 4rem;
|
||||
}
|
||||
|
||||
.header {
|
||||
margin-bottom: 2.5rem;
|
||||
padding-bottom: 1.5rem;
|
||||
border-bottom: 1px solid rgba(212, 165, 116, 0.25);
|
||||
}
|
||||
|
||||
.header h1 {
|
||||
font-size: 1.5rem;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.15em;
|
||||
text-transform: uppercase;
|
||||
color: var(--amber);
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.sub {
|
||||
font-size: 0.8rem;
|
||||
color: var(--dim);
|
||||
letter-spacing: 0.05em;
|
||||
}
|
||||
|
||||
.tape {
|
||||
background: rgba(0, 0, 0, 0.35);
|
||||
border: 1px solid rgba(212, 165, 116, 0.2);
|
||||
padding: 1.25rem;
|
||||
margin-bottom: 2.5rem;
|
||||
}
|
||||
|
||||
.tape-head {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 1rem;
|
||||
font-size: 0.65rem;
|
||||
letter-spacing: 0.2em;
|
||||
color: var(--amber);
|
||||
}
|
||||
|
||||
.decode-btn {
|
||||
font-family: var(--mono);
|
||||
font-size: 0.7rem;
|
||||
background: transparent;
|
||||
border: 1px solid var(--amber);
|
||||
color: var(--amber);
|
||||
padding: 0.35rem 0.65rem;
|
||||
cursor: pointer;
|
||||
letter-spacing: 0.08em;
|
||||
}
|
||||
|
||||
.decode-btn:hover {
|
||||
background: rgba(212, 165, 116, 0.15);
|
||||
}
|
||||
|
||||
.morse {
|
||||
font-size: 0.85rem;
|
||||
color: var(--dim);
|
||||
word-break: break-all;
|
||||
line-height: 1.8;
|
||||
min-height: 3rem;
|
||||
}
|
||||
|
||||
.decoded {
|
||||
margin-top: 1rem;
|
||||
padding-top: 1rem;
|
||||
border-top: 1px dashed rgba(212, 165, 116, 0.3);
|
||||
font-size: 0.95rem;
|
||||
color: var(--paper);
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.decoded.hidden { display: none; }
|
||||
|
||||
.channels { margin-bottom: 2rem; }
|
||||
|
||||
.channels h2 {
|
||||
font-size: 0.65rem;
|
||||
letter-spacing: 0.25em;
|
||||
color: var(--dim);
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.channels ul { list-style: none; }
|
||||
|
||||
.channels li {
|
||||
display: grid;
|
||||
grid-template-columns: 2.5rem 1fr auto;
|
||||
gap: 0.5rem;
|
||||
align-items: center;
|
||||
padding: 0.65rem 0;
|
||||
border-bottom: 1px solid rgba(212, 165, 116, 0.1);
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
.line-id { color: var(--dim); font-size: 0.75rem; }
|
||||
.line-status { color: var(--amber); font-size: 0.7rem; letter-spacing: 0.1em; }
|
||||
.line-link {
|
||||
color: var(--amber);
|
||||
text-decoration: none;
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
|
||||
.line-link:hover { text-decoration: underline; }
|
||||
|
||||
.principles {
|
||||
font-size: 0.85rem;
|
||||
color: var(--dim);
|
||||
margin-bottom: 2.5rem;
|
||||
line-height: 1.65;
|
||||
}
|
||||
|
||||
.send {
|
||||
padding: 1.5rem 0;
|
||||
border-top: 1px solid rgba(212, 165, 116, 0.25);
|
||||
}
|
||||
|
||||
.send-label {
|
||||
font-size: 0.65rem;
|
||||
letter-spacing: 0.2em;
|
||||
color: var(--dim);
|
||||
margin-bottom: 0.5rem;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
.send-label:first-child { margin-top: 0; }
|
||||
|
||||
.send-addr {
|
||||
font-size: 1.1rem;
|
||||
color: var(--amber);
|
||||
text-decoration: none;
|
||||
letter-spacing: 0.05em;
|
||||
}
|
||||
|
||||
.send-addr:hover { text-decoration: underline; }
|
||||
|
||||
footer {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
padding: 1.5rem 2rem;
|
||||
font-size: 0.7rem;
|
||||
color: var(--dim);
|
||||
letter-spacing: 0.08em;
|
||||
}
|
||||
|
||||
footer a {
|
||||
color: var(--dim);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
footer a:hover { color: var(--amber); }
|
||||
@@ -0,0 +1,58 @@
|
||||
const MESSAGES = [
|
||||
{
|
||||
morse: '·−·−− · ·−·−− ·−· · ·−·−− −−− · ·−·−− ·−· · ·−·−− ·−−−',
|
||||
text: 'Levkin builds production software for teams under pressure. Custom systems, automation, enterprise tooling.',
|
||||
},
|
||||
{
|
||||
morse: '−−− ·−·−− · ·−·−− ·−· · ·−·−− ·−−− · ·−·−− ·−· · ·−·−− −−− · ·−·−− ·−· · ·−·−− ·−−−',
|
||||
text: 'Error handling required. Documentation required. Tests before live data. Scope creep rejected.',
|
||||
},
|
||||
];
|
||||
|
||||
const morseEl = document.getElementById('morse');
|
||||
const decodedEl = document.getElementById('decoded');
|
||||
const btn = document.getElementById('decode-btn');
|
||||
let idx = 0;
|
||||
let typing = false;
|
||||
|
||||
function typeMorse(text, cb) {
|
||||
typing = true;
|
||||
morseEl.textContent = '';
|
||||
let i = 0;
|
||||
const tick = () => {
|
||||
if (i < text.length) {
|
||||
morseEl.textContent += text[i];
|
||||
i++;
|
||||
setTimeout(tick, 35 + Math.random() * 40);
|
||||
} else {
|
||||
typing = false;
|
||||
cb?.();
|
||||
}
|
||||
};
|
||||
tick();
|
||||
}
|
||||
|
||||
function showMessage() {
|
||||
const msg = MESSAGES[idx % MESSAGES.length];
|
||||
decodedEl.classList.add('hidden');
|
||||
typeMorse(msg.morse, () => {
|
||||
btn.disabled = false;
|
||||
btn.textContent = 'Decode ↵';
|
||||
});
|
||||
btn._pending = msg;
|
||||
}
|
||||
|
||||
btn.addEventListener('click', () => {
|
||||
if (typing) return;
|
||||
if (btn._pending && decodedEl.classList.contains('hidden')) {
|
||||
decodedEl.textContent = btn._pending.text;
|
||||
decodedEl.classList.remove('hidden');
|
||||
btn.textContent = 'Next signal →';
|
||||
btn._pending = null;
|
||||
return;
|
||||
}
|
||||
idx++;
|
||||
showMessage();
|
||||
});
|
||||
|
||||
showMessage();
|
||||
Reference in New Issue
Block a user