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,88 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Levkin — Software Development</title>
|
||||
<meta name="description" content="Levkin — trusted software development for enterprise teams." />
|
||||
<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=Cormorant+Garamond:ital,wght@0,500;0,600;1,400&family=Source+Sans+3:wght@400;500;600&display=swap" rel="stylesheet" />
|
||||
<link rel="stylesheet" href="./vault.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="frame">
|
||||
<nav class="nav">
|
||||
<a href="/" class="nav-back">All options</a>
|
||||
<span class="seal">Levkin</span>
|
||||
</nav>
|
||||
|
||||
<header class="hero">
|
||||
<p class="charter">Chartered software practice · Canada</p>
|
||||
<h1>Built to hold.<br /><em>Built to hand off.</em></h1>
|
||||
<p class="lead">Levkin develops production systems, automation, and enterprise software for organizations that cannot afford failure in the field.</p>
|
||||
</header>
|
||||
|
||||
<section class="holdings">
|
||||
<h2 class="section-label">Holdings</h2>
|
||||
<div class="holding-grid">
|
||||
<article class="holding">
|
||||
<h3>Custom software</h3>
|
||||
<p>Applications, APIs, and internal platforms engineered for longevity and auditability.</p>
|
||||
</article>
|
||||
<article class="holding">
|
||||
<h3>Automation</h3>
|
||||
<p>Operational pipelines and integrations. <a href="https://auto.levkin.ca">auto.levkin.ca</a></p>
|
||||
</article>
|
||||
<article class="holding">
|
||||
<h3>CaseWare practice</h3>
|
||||
<p>Fifteen years in audit and accounting systems. <a href="https://caseware.levkin.ca">caseware.levkin.ca</a></p>
|
||||
</article>
|
||||
<article class="holding">
|
||||
<h3>Internal operations</h3>
|
||||
<p>Restricted orchestration systems. <a href="https://jobs.levkin.ca">jobs.levkin.ca</a></p>
|
||||
</article>
|
||||
<article class="holding">
|
||||
<h3>Quality engineering</h3>
|
||||
<p>SDET portfolio — test automation, CI/CD, trace-driven QA. <a href="https://iliadobkin.com">iliadobkin.com</a></p>
|
||||
</article>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="covenant">
|
||||
<h2 class="section-label">Covenant</h2>
|
||||
<ul>
|
||||
<li><span class="mark">§</span> Reliability is documented, not assumed</li>
|
||||
<li><span class="mark">§</span> Every deliverable includes a handoff path</li>
|
||||
<li><span class="mark">§</span> Tests precede production data</li>
|
||||
<li><span class="mark">§</span> Scope changes require explicit amendment</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<section class="process">
|
||||
<h2 class="section-label">Engagement</h2>
|
||||
<ol>
|
||||
<li><strong>Discovery</strong> — Understand constraints and stakeholders</li>
|
||||
<li><strong>Proposal</strong> — Fixed scope, timeline, and cost</li>
|
||||
<li><strong>Delivery</strong> — Production-ready, tested, documented</li>
|
||||
<li><strong>Transition</strong> — Optional stewardship or clean exit</li>
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
<section class="contact">
|
||||
<div class="contact-panel">
|
||||
<p class="contact-title">Open an enquiry</p>
|
||||
<a href="https://cal.levkin.ca/ilia/consult" class="contact-email">Book 15 min consultation</a>
|
||||
<a href="mailto:hello@levkine.ca?subject=Vault%20enquiry" class="contact-email contact-email-secondary">hello@levkine.ca</a>
|
||||
<p class="contact-note">Remote · North America & Europe</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<footer>
|
||||
<span>levkin.ca</span>
|
||||
<a href="https://git.levkin.ca">Source repository</a>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
+242
@@ -0,0 +1,242 @@
|
||||
:root {
|
||||
--forest: #0c1410;
|
||||
--forest-mid: #142820;
|
||||
--brass: #c9b896;
|
||||
--brass-dim: rgba(201, 184, 150, 0.5);
|
||||
--cream: #f0ebe3;
|
||||
--muted: #7a8f82;
|
||||
--serif: 'Cormorant Garamond', Georgia, serif;
|
||||
--sans: 'Source Sans 3', system-ui, sans-serif;
|
||||
}
|
||||
|
||||
* { box-sizing: border-box; margin: 0; padding: 0; }
|
||||
|
||||
body {
|
||||
font-family: var(--sans);
|
||||
background: var(--forest);
|
||||
color: var(--cream);
|
||||
min-height: 100vh;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.frame {
|
||||
max-width: 680px;
|
||||
margin: 0 auto;
|
||||
padding: 0 2rem 4rem;
|
||||
border-left: 1px solid var(--brass-dim);
|
||||
border-right: 1px solid var(--brass-dim);
|
||||
min-height: 100vh;
|
||||
background: linear-gradient(180deg, var(--forest-mid) 0%, var(--forest) 30%);
|
||||
}
|
||||
|
||||
.nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 1.5rem 0;
|
||||
border-bottom: 1px solid var(--brass-dim);
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
.nav-back {
|
||||
color: var(--muted);
|
||||
text-decoration: none;
|
||||
letter-spacing: 0.04em;
|
||||
}
|
||||
|
||||
.nav-back:hover { color: var(--brass); }
|
||||
|
||||
.seal {
|
||||
font-family: var(--serif);
|
||||
font-size: 1.1rem;
|
||||
font-weight: 600;
|
||||
color: var(--brass);
|
||||
letter-spacing: 0.12em;
|
||||
}
|
||||
|
||||
.hero {
|
||||
padding: 3.5rem 0 3rem;
|
||||
border-bottom: 1px solid var(--brass-dim);
|
||||
}
|
||||
|
||||
.charter {
|
||||
font-size: 0.72rem;
|
||||
letter-spacing: 0.2em;
|
||||
text-transform: uppercase;
|
||||
color: var(--muted);
|
||||
margin-bottom: 1.25rem;
|
||||
}
|
||||
|
||||
.hero h1 {
|
||||
font-family: var(--serif);
|
||||
font-size: clamp(2rem, 6vw, 2.75rem);
|
||||
font-weight: 500;
|
||||
line-height: 1.2;
|
||||
margin-bottom: 1.25rem;
|
||||
color: var(--cream);
|
||||
}
|
||||
|
||||
.hero h1 em {
|
||||
font-style: italic;
|
||||
color: var(--brass);
|
||||
}
|
||||
|
||||
.lead {
|
||||
font-size: 1.05rem;
|
||||
color: var(--muted);
|
||||
max-width: 40ch;
|
||||
line-height: 1.65;
|
||||
}
|
||||
|
||||
.section-label {
|
||||
font-family: var(--serif);
|
||||
font-size: 0.85rem;
|
||||
font-weight: 600;
|
||||
letter-spacing: 0.25em;
|
||||
text-transform: uppercase;
|
||||
color: var(--brass);
|
||||
margin-bottom: 1.25rem;
|
||||
padding-top: 2.5rem;
|
||||
}
|
||||
|
||||
.holdings { padding-bottom: 1rem; }
|
||||
|
||||
.holding-grid {
|
||||
display: grid;
|
||||
gap: 1px;
|
||||
background: var(--brass-dim);
|
||||
}
|
||||
|
||||
.holding {
|
||||
background: var(--forest);
|
||||
padding: 1.35rem 1.25rem;
|
||||
}
|
||||
|
||||
.holding h3 {
|
||||
font-family: var(--serif);
|
||||
font-size: 1.2rem;
|
||||
font-weight: 600;
|
||||
color: var(--brass);
|
||||
margin-bottom: 0.35rem;
|
||||
}
|
||||
|
||||
.holding p {
|
||||
font-size: 0.9rem;
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
.holding a {
|
||||
color: var(--brass);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.holding a:hover { text-decoration: underline; }
|
||||
|
||||
.covenant ul {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.covenant li {
|
||||
padding: 0.6rem 0;
|
||||
border-bottom: 1px solid rgba(201, 184, 150, 0.12);
|
||||
font-size: 0.95rem;
|
||||
color: var(--muted);
|
||||
display: flex;
|
||||
gap: 0.75rem;
|
||||
}
|
||||
|
||||
.mark {
|
||||
color: var(--brass);
|
||||
font-family: var(--serif);
|
||||
}
|
||||
|
||||
.process ol {
|
||||
list-style: none;
|
||||
counter-reset: step;
|
||||
}
|
||||
|
||||
.process li {
|
||||
counter-increment: step;
|
||||
padding: 0.75rem 0;
|
||||
border-bottom: 1px solid rgba(201, 184, 150, 0.12);
|
||||
font-size: 0.9rem;
|
||||
color: var(--muted);
|
||||
padding-left: 2rem;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.process li::before {
|
||||
content: counter(step, decimal-leading-zero);
|
||||
position: absolute;
|
||||
left: 0;
|
||||
font-family: var(--serif);
|
||||
color: var(--brass);
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
.process strong {
|
||||
color: var(--cream);
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.contact {
|
||||
padding: 3rem 0 2rem;
|
||||
}
|
||||
|
||||
.contact-panel {
|
||||
border: 1px solid var(--brass);
|
||||
padding: 2rem;
|
||||
text-align: center;
|
||||
background: rgba(201, 184, 150, 0.04);
|
||||
}
|
||||
|
||||
.contact-title {
|
||||
font-family: var(--serif);
|
||||
font-size: 0.9rem;
|
||||
letter-spacing: 0.15em;
|
||||
text-transform: uppercase;
|
||||
color: var(--brass);
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
|
||||
.contact-email {
|
||||
font-family: var(--serif);
|
||||
font-size: 1.5rem;
|
||||
color: var(--cream);
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.contact-email:hover { color: var(--brass); }
|
||||
|
||||
.contact-email-secondary {
|
||||
display: block;
|
||||
font-size: 1rem;
|
||||
margin-top: 0.75rem;
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
.contact-email-secondary:hover { color: var(--brass); }
|
||||
|
||||
.contact-note {
|
||||
font-size: 0.8rem;
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
footer {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
padding-top: 2rem;
|
||||
border-top: 1px solid var(--brass-dim);
|
||||
font-size: 0.75rem;
|
||||
color: var(--muted);
|
||||
letter-spacing: 0.04em;
|
||||
}
|
||||
|
||||
footer a {
|
||||
color: var(--muted);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
footer a:hover { color: var(--brass); }
|
||||
Reference in New Issue
Block a user