initial landing page
This commit is contained in:
+87
@@ -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>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; }
|
||||
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>
|
||||
<footer>
|
||||
<a href="https://git.dustin.coffee/LobotomyLabs">All repos on Gitea</a>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user