Files
llPubSite/index.html
T

116 lines
3.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lobotomy Labs</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Courier New', monospace;
background: #282828;
color: #ebdbb2;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 2rem;
}
h1 {
font-size: 2.5rem;
color: #d65d0e;
margin-bottom: 0.5rem;
}
.tagline {
color: #b8bb26;
font-size: 1.1rem;
margin-bottom: 3rem;
text-align: center;
}
.projects {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 1.5rem;
max-width: 900px;
width: 100%;
}
.card {
border: 1px solid #504945;
border-radius: 6px;
padding: 1.5rem;
transition: border-color 0.2s;
}
.card:hover { border-color: #458588; }
.card h2 { color: #458588; font-size: 1.2rem; margin-bottom: 0.5rem; }
.card p { color: #bdae93; font-size: 0.9rem; line-height: 1.5; }
.card a {
display: inline-block;
margin-top: 1rem;
color: #d65d0e;
text-decoration: none;
font-size: 0.85rem;
}
.card a:hover { text-decoration: underline; }
h3 {
font-size: 1.4rem;
color: #d65d0e;
margin: 3rem 0 1rem;
text-align: center;
}
.team {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 1.5rem;
max-width: 900px;
width: 100%;
}
.team .card h2 { color: #b8bb26; }
.role { color: #665c54; font-size: 0.75rem; margin-bottom: 0.5rem; }
footer {
margin-top: 4rem;
color: #665c54;
font-size: 0.8rem;
}
footer a { color: #458588; text-decoration: none; }
</style>
</head>
<body>
<h1>🧠 Lobotomy Labs</h1>
<p class="tagline">We do unspeakable things to infrastructure so you don't have to.</p>
<div class="projects">
<div class="card">
<h2>GopherGate</h2>
<p>A Go LLM proxy gateway. Routes traffic across providers, tracks spend, handles failover. The spine of the AI stack.</p>
<a href="https://git.dustin.coffee/LobotomyLabs/GopherGate">View on Gitea →</a>
</div>
<div class="card">
<h2>dumpsterChat</h2>
<p>Self-hosted Discord-like platform for ~12 degenerates. Go/Chi + React/WebSocket. Threads, forums, calendars, moderation.</p>
<a href="https://git.dustin.coffee/LobotomyLabs/dumpsterChat">View on Gitea →</a>
</div>
<div class="card">
<h2>Coop Credits</h2>
<p>Turns Plex watch time into spendable currency. Earn by watching, spend on requests. Economics meets media.</p>
<a href="https://git.dustin.coffee/LobotomyLabs/coop">View on Gitea →</a>
</div>
</div>
<h3>The Crew</h3>
<div class="team">
<div class="card">
<div class="role">Founder / Infra</div>
<h2>Dustin</h2>
<p>Built the stack, broke the stack, fixed the stack. Homelab operator, self-hosted everything enthusiast, and the reason any of this runs at all. Runs on coffee and uptime anxiety.</p>
</div>
<div class="card">
<div class="role">Lead QA</div>
<h2>Sascha</h2>
<p>If it works, he tried to break it first. Main QA tester and part of the testMonkeys crew on Gitea. Catches the bugs the rest of us ship.</p>
</div>
</div>
<footer>
<a href="https://git.dustin.coffee/LobotomyLabs">All repos on Gitea</a>
</footer>
</body>
</html>