Files
Cozy-Den/src/pages/index.astro
T
2026-01-19 12:50:16 +00:00

409 lines
13 KiB
Plaintext

---
import BaseLayout from "../layouts/BaseLayout.astro";
---
<BaseLayout
title="Hidden Den Cafe"
description="Latte's cozy corner of the internet. Gay furry wizard, IT enthusiast, and self-hosting advocate."
>
<div class="matrix-bg" aria-hidden="true"></div>
<main class="main">
<div class="container">
<!-- Header -->
<header class="header fade-in">
<h1 class="title">Hidden Den Cafe</h1>
<a class="pill-link" href="#projects">View Projects ↓</a>
<div class="divider">══════════════════════════════</div>
</header>
<!-- About -->
<section class="section fade-in">
<p class="intro">
Hey, I'm <span class="highlight">Latte</span> (he/him).
</p>
<p class="tagline">gay furry wizard</p>
<p class="desc">
IT wizard with a homelab. I believe in self-hosting, privacy,
and keeping control of my own data. Companies don't get to sell
or misuse what's mine.
</p>
</section>
<div class="divider">══════════════════════════════</div>
<!-- Games -->
<section class="section fade-in">
<h2>Games</h2>
<p class="games">
Minecraft, No Man's Sky, Warframe, Cyberpunk 2077
</p>
</section>
<div class="divider">══════════════════════════════</div>
<!-- Projects -->
<section class="section fade-in" id="projects">
<h2>Projects</h2>
<div class="projects-grid">
<div class="project-card">
<h3><a href="https://git.hiddenden.cafe/Hiddenden/DevDen" target="_blank" rel="noopener noreferrer">DevDen</a></h3>
<p>Concept/proof-of-concept den exploring ideas and workflows—non-production, unsupported.</p>
</div>
<div class="project-card">
<h3><a href="https://git.hiddenden.cafe/Hiddenden/Cozy-Den" target="_blank" rel="noopener noreferrer">Cozy-Den</a></h3>
<p>A warm, self-hosted corner of the internet creating comfortable digital spaces.</p>
</div>
<div class="project-card">
<h3><a href="https://git.hiddenden.cafe/Hiddenden/TailAssistant" target="_blank" rel="noopener noreferrer">TailAssistant</a></h3>
<p>Voice companion inspired by Joey—ready to listen and respond from your desk.</p>
</div>
<div class="project-card">
<h3><a href="https://git.hiddenden.cafe/Hiddenden/GuardDen" target="_blank" rel="noopener noreferrer">GuardDen</a></h3>
<p>Discord moderation denbot blending AI filtering with classic tools to keep spaces warm and safe.</p>
</div>
<div class="project-card">
<h3><a href="https://git.hiddenden.cafe/Hiddenden/openrabbit" target="_blank" rel="noopener noreferrer">openrabbit</a></h3>
<p>Enterprise-grade AI code review for Gitea/GitHub with PR review, triage, chat, and analysis.</p>
</div>
<div class="project-card">
<h3><a href="https://git.hiddenden.cafe/Hiddenden/loyal_companion" target="_blank" rel="noopener noreferrer">loyal_companion</a></h3>
<p>A companion for deep, steady care—processing grief, navigating attachment, and holding space.</p>
</div>
<div class="project-card">
<h3><a href="https://git.hiddenden.cafe/Hiddenden/Bean-Den" target="_blank" rel="noopener noreferrer">Bean-Den</a></h3>
<p>A personal, cozy space to track your coffee experiences—discover what you love and why.</p>
</div>
<div class="project-card">
<h3><a href="https://git.hiddenden.cafe/Hiddenden/Burrow" target="_blank" rel="noopener noreferrer">Burrow</a></h3>
<p>Self-hosted AI chat with a terminal aesthetic and git-backed knowledge base you can search and update.</p>
</div>
<div class="project-card">
<h3><a href="https://git.hiddenden.cafe/Hiddenden/mrunicellular" target="_blank" rel="noopener noreferrer">mrunicellular</a></h3>
<p>Modern site for streamer MrUnicellular (Joey) with live stream, backend API, and database support.</p>
</div>
<div class="project-card">
<h3><a href="https://git.hiddenden.cafe/Hiddenden/Reddit_Downloader" target="_blank" rel="noopener noreferrer">Reddit_Downloader</a></h3>
<p>Python-powered downloader to archive Reddit content and keep local copies.</p>
</div>
<div class="project-card">
<h3><a href="https://git.hiddenden.cafe/Hiddenden/telegram-sticker-downloader" target="_blank" rel="noopener noreferrer">telegram-sticker-downloader</a></h3>
<p>Python Telegram sticker downloader to fetch packs for offline keeps.</p>
</div>
</div>
</section>
<div class="divider">══════════════════════════════</div>
<!-- Links -->
<section class="section fade-in">
<h2>Links</h2>
<ul class="links">
<li><a href="https://git.hiddenden.cafe" target="_blank" rel="noopener noreferrer">Gitea</a> — Self-hosted git server</li>
</ul>
</section>
<div class="divider">══════════════════════════════</div>
<!-- Donate -->
<section class="section fade-in">
<h2>Support</h2>
<div class="donate">
<div class="crypto">
<span class="crypto-label">[XMR]</span>
<code class="crypto-addr">41uiUeBru8jhtzjQz3M5CKV1uFpern7juStdfveNQS52LQ9aw3mNkdbc8akM81YnxuE2RT9K2Cmyp9cfyi1osrbVBjBbzQ3</code>
</div>
<div class="crypto">
<span class="crypto-label">[ETH]</span>
<code class="crypto-addr">0x3Dfc92458267b91BFa6bF8f6c86bAE809Ab76Cb4</code>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer fade-in">
<div class="divider">══════════════════════════════</div>
<p>Made with love by Latte</p>
</footer>
</div>
</main>
</BaseLayout>
<style>
/* Matrix-style animated background */
.matrix-bg {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
opacity: 0.03;
background:
linear-gradient(var(--color-accent) 1px, transparent 1px),
linear-gradient(90deg, var(--color-accent) 1px, transparent 1px);
background-size: 50px 50px;
animation: grid-move 20s linear infinite;
}
@keyframes grid-move {
0% { transform: translate(0, 0); }
100% { transform: translate(50px, 50px); }
}
.main {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: var(--space-lg) var(--space-md);
}
.container {
max-width: 700px;
width: 100%;
background: rgba(30, 30, 46, 0.8);
backdrop-filter: blur(10px);
border: 1px solid var(--color-surface);
border-radius: 8px;
padding: var(--space-xl);
}
.header {
text-align: center;
margin-bottom: var(--space-lg);
}
.title {
font-size: 2rem;
font-weight: 700;
letter-spacing: 2px;
}
.divider {
color: var(--color-surface);
text-align: center;
font-size: 0.75rem;
margin: var(--space-md) 0;
user-select: none;
}
.section {
margin: var(--space-md) 0;
}
.section h2 {
font-size: 1rem;
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: var(--space-sm);
color: var(--color-accent);
}
.intro {
font-size: 1.1rem;
margin-bottom: var(--space-xs);
}
.highlight {
color: var(--color-accent-bright);
font-weight: 700;
}
.tagline {
color: var(--color-accent);
font-style: italic;
margin-bottom: var(--space-sm);
}
.desc {
color: var(--color-text-dim);
line-height: 1.7;
}
.games {
color: var(--color-text-dim);
}
.pill-link {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 6px;
margin: var(--space-xs) auto;
padding: 8px 14px;
border-radius: 999px;
background: var(--color-bg-light);
color: var(--color-accent);
font-weight: 600;
font-size: 0.9rem;
text-decoration: none;
border: 1px solid var(--color-surface);
transition: transform 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.pill-link:hover {
color: var(--color-accent-bright);
border-color: var(--color-accent);
transform: translateY(-1px);
}
.pill-link:focus-visible {
outline: 2px solid var(--color-accent);
outline-offset: 3px;
}
.projects-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: var(--space-md);
}
.project-card {
background: var(--color-bg-light);
border: 1px solid var(--color-surface);
border-radius: 10px;
padding: var(--space-md);
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.project-card:hover {
transform: translateY(-2px);
border-color: var(--color-accent);
box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}
.project-card h3 {
font-size: 1rem;
margin-bottom: var(--space-xs);
}
.project-card h3 a {
color: var(--color-accent);
text-decoration: none;
}
.project-card h3 a:hover {
color: var(--color-accent-bright);
text-decoration: underline;
}
.project-card h3 a:focus-visible {
outline: 2px solid var(--color-accent);
outline-offset: 3px;
}
.project-card p {
color: var(--color-text-dim);
font-size: 0.9rem;
line-height: 1.6;
}
.links {
list-style: none;
}
.links li {
margin-bottom: var(--space-xs);
color: var(--color-text-dim);
}
.links a {
color: var(--color-blue);
}
.links a:hover {
color: var(--color-accent-bright);
}
.donate {
display: flex;
flex-direction: column;
gap: var(--space-sm);
}
.crypto {
display: flex;
flex-wrap: wrap;
align-items: baseline;
gap: var(--space-xs);
}
.crypto-label {
color: var(--color-peach);
font-weight: 700;
font-size: 0.85rem;
}
.crypto-addr {
font-size: 0.7rem;
color: var(--color-text-dim);
word-break: break-all;
background: var(--color-bg);
padding: 2px 6px;
border-radius: 4px;
}
.footer {
margin-top: var(--space-lg);
text-align: center;
}
.footer p {
color: var(--color-text-dim);
font-size: 0.85rem;
}
/* Animations */
.fade-in {
animation: fadeIn 0.6s ease-out forwards;
opacity: 0;
}
.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }
.fade-in:nth-child(5) { animation-delay: 0.5s; }
.fade-in:nth-child(6) { animation-delay: 0.6s; }
.fade-in:nth-child(7) { animation-delay: 0.7s; }
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Responsive */
@media (max-width: 600px) {
.container {
padding: var(--space-md);
}
.title {
font-size: 1.5rem;
}
.divider {
font-size: 0.6rem;
}
}
@media (prefers-reduced-motion: reduce) {
.matrix-bg {
animation: none;
}
.fade-in {
animation: none;
opacity: 1;
}
}
</style>