From 82c84121440ca019d4aeb3e5e93785306b268207 Mon Sep 17 00:00:00 2001 From: denizk0461 Date: Wed, 8 Apr 2026 13:46:09 +0200 Subject: [PATCH] added description parameter for projects --- src/routes/projects/projects2.ts | 22 ++++++++++++++++-- .../misc/lightyears-font}/banner.webp | Bin 2 files changed, 20 insertions(+), 2 deletions(-) rename static/{feed => projects/misc/lightyears-font}/banner.webp (100%) diff --git a/src/routes/projects/projects2.ts b/src/routes/projects/projects2.ts index 61b46fa..70e1e96 100644 --- a/src/routes/projects/projects2.ts +++ b/src/routes/projects/projects2.ts @@ -5,6 +5,7 @@ export interface Project { bannerAlt: string; title: string; subtitle: string; + description: string; isOngoing: boolean; // whether the project is currently active (true) or a past project (false) date: string; status: ProjectStatus; @@ -50,10 +51,11 @@ export const projects: Project[] = [ { category: ProjectCategory.MISC, id: "lightyears-font", - banner: "", - bannerAlt: "", + banner: "banner.webp", + bannerAlt: "A rainbow-like holographic effect produced by bending a reflective sheet of cardboard.", title: "LIGHTYEARS font", subtitle: "stylised font", + description: "", isOngoing: false, date: "March 2026", status: ProjectStatus.FINISHED, @@ -65,6 +67,7 @@ export const projects: Project[] = [ bannerAlt: "", title: "My First Month Drawing", subtitle: "self-imposed drawing challenge", + description: "", isOngoing: false, date: "February – March 2026", status: ProjectStatus.FINISHED, @@ -76,6 +79,7 @@ export const projects: Project[] = [ bannerAlt: "", title: "3DS USB-C mod", subtitle: "DIY charging port mod", + description: "", isOngoing: false, date: "October 2024", status: ProjectStatus.FINISHED, @@ -87,6 +91,7 @@ export const projects: Project[] = [ bannerAlt: "", title: "deej0461", subtitle: "PC companion audio source controller", + description: "", isOngoing: false, date: "August 2024", status: ProjectStatus.FINISHED, @@ -102,6 +107,7 @@ export const projects: Project[] = [ bannerAlt: "", title: "Homesick", subtitle: "", + description: "", isOngoing: true, date: "September 2023 – now", status: ProjectStatus.ACTIVE, @@ -113,6 +119,7 @@ export const projects: Project[] = [ bannerAlt: "", title: "Magician", subtitle: "Online Multiplayer Card Game", + description: "", isOngoing: false, date: "July 2025", status: ProjectStatus.ABANDONED, @@ -124,6 +131,7 @@ export const projects: Project[] = [ bannerAlt: "", title: "Projektike", subtitle: "PvP Game", + description: "", isOngoing: false, date: "August 2024 – May 2025", status: ProjectStatus.ABANDONED, @@ -135,6 +143,7 @@ export const projects: Project[] = [ bannerAlt: "", title: "Swords & Stuff", subtitle: "Unity 2D RPG", + description: "", isOngoing: false, date: "August 2023", status: ProjectStatus.ABANDONED, @@ -146,6 +155,7 @@ export const projects: Project[] = [ bannerAlt: "", title: "Totally Accurate Dating Simulator", subtitle: "HTML Text Adventure", + description: "", isOngoing: false, date: "August 2023", status: ProjectStatus.FINISHED, @@ -161,6 +171,7 @@ export const projects: Project[] = [ bannerAlt: "Close-up of Daisy, focussed on the effect knobs", title: "Daisy FM Synth", subtitle: "Electro-Smith Daisy-based FM synth", + description: "", isOngoing: false, date: "July – September 2024", status: ProjectStatus.FINISHED, @@ -176,6 +187,7 @@ export const projects: Project[] = [ bannerAlt: "", title: "WeserPlaner", subtitle: "University Timetable & Canteen Info App", + description: "", isOngoing: false, date: "April 2023 – January 2024", status: ProjectStatus.EOL, @@ -187,6 +199,7 @@ export const projects: Project[] = [ bannerAlt: "", title: "Text Basic", subtitle: "Extremely Basic Text Widget App", + description: "", isOngoing: false, date: "May – November 2023", status: ProjectStatus.EOL, @@ -198,6 +211,7 @@ export const projects: Project[] = [ bannerAlt: "", title: "Qwark Grade Log", subtitle: "Grade Logging App", + description: "", isOngoing: false, date: "June 2019 – March 2020", status: ProjectStatus.EOL, @@ -209,6 +223,7 @@ export const projects: Project[] = [ bannerAlt: "", title: "AvH-Vertretungsplan", subtitle: "Substitution Plan App", + description: "", isOngoing: false, date: "April 2019 – March 2020", status: ProjectStatus.EOL, @@ -225,6 +240,7 @@ export const projects: Project[] = [ bannerAlt: "", title: "Dreamworld", subtitle: "My First Album", + description: "", isOngoing: false, date: "July 2019 – September 2021", status: ProjectStatus.FINISHED, @@ -236,6 +252,7 @@ export const projects: Project[] = [ bannerAlt: "", title: "A New Beginning", subtitle: "", + description: "", isOngoing: false, date: "May – August 2018", status: ProjectStatus.FINISHED, @@ -247,6 +264,7 @@ export const projects: Project[] = [ bannerAlt: "", title: "Soundcloud", subtitle: "Demo Dump & Archive", + description: "", isOngoing: false, date: "", status: ProjectStatus.INACTIVE, diff --git a/static/feed/banner.webp b/static/projects/misc/lightyears-font/banner.webp similarity index 100% rename from static/feed/banner.webp rename to static/projects/misc/lightyears-font/banner.webp