From 77a70b9d5992dc683203b0f3f1206e579017001b Mon Sep 17 00:00:00 2001 From: sai sai Date: Thu, 2 Jul 2026 12:08:10 -0300 Subject: [PATCH] feat(projects): add DaemonCraft entry linking to daemoncraft.altermundi.net Add DaemonCraft to the PROJECTS grid (AI daemon inside Minecraft, local self-hosted models). With 6 projects the grid is now two even rows of three, so drop the trailing-card centering hack (col-start-2 / last-child:col-start-4) in favor of uniform lg:col-span-2 packing. Co-Authored-By: Claude Opus 4.8 (1M context) --- components/projects.tsx | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/components/projects.tsx b/components/projects.tsx index efbe824..158a9b4 100644 --- a/components/projects.tsx +++ b/components/projects.tsx @@ -60,6 +60,15 @@ const PROJECTS: Project[] = [ url: "https://harmonicbeacon.com", repoUrl: "https://github.com/altermundi", }, + { + name: "DaemonCraft", + shortDescription: + "An AI companion — a daemon — that lives inside Minecraft, powered by local, self-hosted models. Players summon and converse with it as it perceives and acts within the world, turning the game into a hands-on playground for open-source AI and digital sovereignty.", + tags: ["Local AI", "Education", "Minecraft"], + status: "Active", + url: "https://daemoncraft.altermundi.net", + repoUrl: "https://github.com/AlterMundi/saoul_daemoncraft", + }, ] export function Projects() { @@ -80,11 +89,10 @@ export function Projects() {
- {PROJECTS.map((project, index) => ( + {PROJECTS.map((project) => (