diff --git a/src/components/Hero.astro b/src/components/Hero.astro
index fabf6a06..b5b8acc5 100644
--- a/src/components/Hero.astro
+++ b/src/components/Hero.astro
@@ -11,7 +11,7 @@ import { services } from "@/data/services";
Homelab runs {services.length} services across segmented VLANs — pfSense, Authentik SSO,
full observability stack. Write software too: mobile apps, Go backends, open
- protocols. Daily drivers, all of it.
+ protocols.
diff --git a/src/data/projects.ts b/src/data/projects.ts
index bcfbcdd4..bd40ebc9 100644
--- a/src/data/projects.ts
+++ b/src/data/projects.ts
@@ -13,6 +13,25 @@ export type Project = {
export const projects: Project[] = [
// --- Featured ---
+ {
+ slug: "uptop",
+ title: "uptop",
+ description: "Live uptime monitoring dashboard for your terminal. SSH-accessible. HTTP, ping, TCP, DNS, push checks with alerts, clustering, and Prometheus metrics.",
+ tags: ["Go", "Bubbletea", "Monitoring", "Uptime"],
+ githubUrl: "https://github.com/lerkolabs/uptop",
+ tier: "featured",
+ year: 2026,
+ },
+ {
+ slug: "nib",
+ title: "nib",
+ description:
+ "Capture-first personal journal built with Go + SQLite. Currently developing in private when I have spare time.",
+ tags: ["Go", "JavaScript", "SQLite", "Stream-of-Thought"],
+ githubUrl: "https://gitea.lerkolabs.com/lerko/nib-v1",
+ tier: "featured",
+ year: 2026,
+ },
{
slug: "homelab",
title: "homelab",
@@ -27,33 +46,22 @@ export const projects: Project[] = [
slug: "portfolio",
title: "portfolio",
description:
- "Astro static site, self-hosted in a DMZ LXC behind Nginx, deployed via Gitea Actions CI.",
- tags: ["Astro", "Dockerfile", "Tailwind", "nginx", "Caddy"],
+ "Astro static site, self-hosted in a DMZ LXC behind Caddy, deployed via Gitea Actions CI.",
+ tags: ["Astro", "Typescript", "Dockerfile", "Caddy"],
githubUrl: "https://gitea.lerkolabs.com/lerko/portfolio",
tier: "featured",
year: 2021,
},
- {
- slug: "nib",
- title: "nib",
- description:
- "Capture-first personal journal built with Go + React + SQLite. Currently developing in private when I have spare time.",
- tags: ["Go", "React", "SQLite", "Journal", "Stream-of-Thought"],
- githubUrl: "https://github.com/lerko96/nib",
- tier: "featured",
- year: 2026,
- },
+ // --- Archive ---
{
slug: "open-pact",
title: "open-pact",
- description:
- "Open protocol for AI agent identity, delegation, and portable memory. Ed25519 keypair identity, signed delegation warrants, portable signed memory facts. No central registry.",
+ description: "Open protocol for AI agent identity, delegation, and portable memory. Ed25519 keypair identity, signed delegation",
tags: ["TypeScript", "Ed25519", "DID", "npm", "CC0"],
githubUrl: "https://github.com/lerko96/open-pact",
- tier: "featured",
+ tier: "archive",
year: 2026,
},
- // --- Archive ---
{
slug: "helm",
title: "helm",
diff --git a/src/pages/index.astro b/src/pages/index.astro
index 0f1f5c84..bbbbe34b 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -12,7 +12,7 @@ import { services, categoryOrder, categoryLabels } from "@/data/services";
const glanceStats = [
{ label: "Hypervisor", value: "Proxmox VE" },
{ label: "Firewall", value: "pfSense (Netgate 1100)" },
- { label: "Network", value: "8 VLANs, default deny, managed switching" },
+ { label: "Network", value: "7 VLANs, default deny, managed switching" },
{ label: "Services", value: `${services.length} self-hosted across ${categoryOrder.length} categories` },
];
---