aboutsummaryrefslogtreecommitdiff
path: root/components/projects-grid.tsx
diff options
context:
space:
mode:
authorLeander Scherer <leander@schererleander.de>2026-03-08 20:20:13 +0100
committerLeander Scherer <leander@schererleander.de>2026-03-08 20:20:13 +0100
commit9d00b54a0c5b9d102e0089916e7dd86e3ded0efe (patch)
tree614d91524c81cc94f3334e51e835afe659d39448 /components/projects-grid.tsx
parent1236e73b3d6e09e09a433e20f2b24ffdfd7ccc2a (diff)
feat(projects): add new dungeon crawler project
Diffstat (limited to 'components/projects-grid.tsx')
-rw-r--r--components/projects-grid.tsx14
1 files changed, 8 insertions, 6 deletions
diff --git a/components/projects-grid.tsx b/components/projects-grid.tsx
index 52ef95a..8f2a67f 100644
--- a/components/projects-grid.tsx
+++ b/components/projects-grid.tsx
@@ -17,6 +17,13 @@ const projects: Project[] = [
githubUrl: "https://github.com/schererleander/boilerplate",
videoSrc: "/videos/boilerplate-preview.mp4",
},
+ {
+ title: "Dungeon",
+ description: "An 8-bit dungeon crawler game made using the Raylib library and Tiled map editor.",
+ githubUrl: "https://github.com/schererleander/dungeon",
+ videoSrc: "/videos/dungeon-preview.mp4",
+ },
+
{
title: "Authentication",
description: "Simple authentication system built using Express.js.",
@@ -29,12 +36,7 @@ const projects: Project[] = [
githubUrl: "https://github.com/schererleander/spaceinvaders",
videoSrc: "/videos/spaceinvaders-preview.mp4",
},
- {
- title: "Specula",
- description: "A minimal TUI tool written in Go to view file metadata and description.",
- githubUrl: "https://github.com/schererleander/specula",
- },
-];
+ ];
export function ProjectsGrid() {
return (