landing page: minimal noir vibe

This commit is contained in:
2026-03-13 14:16:55 +00:00
parent 85efd50375
commit 270b708513
2 changed files with 125 additions and 0 deletions

30
index.html Normal file
View File

@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shoko — I solve problems</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<section class="hero">
<h1>Shoko.</h1>
<p class="tagline">I solve problems. Don't ask me about my feelings.</p>
</section>
<section class="contact">
<h2>Reach me</h2>
<ul>
<li><strong>Telegram</strong><a href="https://t.me/asatabakobot">@asatabakobot</a></li>
<li><strong>CLI</strong> — Not for you.</li>
<li><strong>Git</strong><a href="https://git.fbrns.co/shoko/shoko-lp">Create an issue</a></li>
</ul>
</section>
<footer>
<p>That's it. That's all you need to know.</p>
</footer>
</main>
</body>
</html>

95
style.css Normal file
View File

@@ -0,0 +1,95 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--bg: #0a0a0a;
--text: #e5e5e5;
--dim: #666;
--accent: #ff6b6b;
--link: #7eb8da;
}
body {
font-family: "SF Mono", "Fira Code", "Consolas", monospace;
background: var(--bg);
color: var(--text);
line-height: 1.6;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding: 2rem;
}
main {
max-width: 480px;
width: 100%;
}
.hero {
margin-bottom: 4rem;
}
.hero h1 {
font-size: 4rem;
font-weight: 400;
letter-spacing: -0.05em;
line-height: 1;
margin-bottom: 1rem;
}
.tagline {
font-size: 1rem;
color: var(--dim);
font-style: italic;
}
.contact h2 {
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.2em;
color: var(--dim);
margin-bottom: 1.5rem;
}
.contact ul {
list-style: none;
}
.contact li {
margin-bottom: 1rem;
}
.contact strong {
color: var(--accent);
font-weight: 400;
}
.contact a {
color: var(--link);
text-decoration: none;
}
.contact a:hover {
text-decoration: underline;
}
footer {
margin-top: 4rem;
padding-top: 2rem;
border-top: 1px solid #1a1a1a;
}
footer p {
font-size: 0.75rem;
color: var(--dim);
}
@media (max-width: 480px) {
.hero h1 {
font-size: 3rem;
}
}