feat: add 6034.de — personal project space with mGreen link
This commit is contained in:
143
sites/6034.de/index.html
Normal file
143
sites/6034.de/index.html
Normal file
@@ -0,0 +1,143 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
|
||||
<meta name="theme-color" content="#0f1210">
|
||||
<title>6034 — Personal Project Space</title>
|
||||
<meta name="description" content="Eine Sammlung persönlicher Projekte von m.">
|
||||
<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=Inter:wght@400;500;700&family=JetBrains+Mono:wght@400;700&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
:root {
|
||||
--bg: #0f1210;
|
||||
--bg-card: #1a1f1c;
|
||||
--border: #2d3630;
|
||||
--text: #e8ede9;
|
||||
--text-dim: #8a9b8e;
|
||||
--green: #4ade80;
|
||||
--green-dim: #22c55e;
|
||||
--font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
|
||||
--font-mono: 'JetBrains Mono', monospace;
|
||||
}
|
||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||
html, body {
|
||||
background: var(--bg);
|
||||
color: var(--text);
|
||||
font-family: var(--font);
|
||||
min-height: 100vh;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
body::before {
|
||||
content: "";
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
background-image: radial-gradient(circle at 20% 10%, rgba(74,222,128,0.06), transparent 40%),
|
||||
radial-gradient(circle at 80% 90%, rgba(74,222,128,0.04), transparent 40%);
|
||||
pointer-events: none;
|
||||
z-index: 0;
|
||||
}
|
||||
main {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
max-width: 640px;
|
||||
margin: 0 auto;
|
||||
padding: 4rem 1.5rem;
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
}
|
||||
.brand {
|
||||
font-family: var(--font-mono);
|
||||
font-size: 4rem;
|
||||
font-weight: 700;
|
||||
letter-spacing: -0.02em;
|
||||
color: var(--green);
|
||||
line-height: 1;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
.brand-dot {
|
||||
color: var(--text-dim);
|
||||
}
|
||||
.tagline {
|
||||
color: var(--text-dim);
|
||||
font-size: 1.125rem;
|
||||
margin-bottom: 3rem;
|
||||
max-width: 480px;
|
||||
line-height: 1.5;
|
||||
}
|
||||
.projects {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.75rem;
|
||||
}
|
||||
.project-card {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 1.25rem 1.5rem;
|
||||
background: var(--bg-card);
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 12px;
|
||||
text-decoration: none;
|
||||
color: var(--text);
|
||||
transition: border-color 0.15s ease, transform 0.15s ease;
|
||||
}
|
||||
.project-card:hover {
|
||||
border-color: var(--green-dim);
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
.project-meta {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.25rem;
|
||||
}
|
||||
.project-name {
|
||||
font-weight: 500;
|
||||
font-size: 1rem;
|
||||
}
|
||||
.project-desc {
|
||||
color: var(--text-dim);
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
.project-arrow {
|
||||
color: var(--green);
|
||||
font-family: var(--font-mono);
|
||||
opacity: 0.6;
|
||||
transition: opacity 0.15s ease, transform 0.15s ease;
|
||||
}
|
||||
.project-card:hover .project-arrow {
|
||||
opacity: 1;
|
||||
transform: translateX(2px);
|
||||
}
|
||||
footer {
|
||||
margin-top: 4rem;
|
||||
color: var(--text-dim);
|
||||
font-size: 0.75rem;
|
||||
font-family: var(--font-mono);
|
||||
}
|
||||
@media (max-width: 480px) {
|
||||
.brand { font-size: 3rem; }
|
||||
main { padding: 3rem 1rem; }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<main>
|
||||
<div class="brand">6034<span class="brand-dot">.de</span></div>
|
||||
<p class="tagline">Eine Sammlung persönlicher Projekte. Klein, eigensinnig, immer im Fluss.</p>
|
||||
<div class="projects">
|
||||
<a class="project-card" href="https://grn.msbls.de" target="_blank" rel="noopener">
|
||||
<div class="project-meta">
|
||||
<span class="project-name">🌱 mGreen Journal</span>
|
||||
<span class="project-desc">Indoor Grow — Sensoren, Phasen, Beobachtungen</span>
|
||||
</div>
|
||||
<span class="project-arrow">→</span>
|
||||
</a>
|
||||
</div>
|
||||
<footer>// more soon</footer>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
||||
4
sites/6034.de/site.yaml
Normal file
4
sites/6034.de/site.yaml
Normal file
@@ -0,0 +1,4 @@
|
||||
domain: 6034.de
|
||||
template: custom
|
||||
title: "6034 — Personal Project Space"
|
||||
description: "Eine Sammlung persönlicher Projekte von m."
|
||||
Reference in New Issue
Block a user