added description parameter for projects
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user