From fcdd96e0854f4a6dbcfdb5c6e4435229e18ef26e Mon Sep 17 00:00:00 2001 From: Bartek O Date: Sun, 10 Apr 2022 14:01:29 +0200 Subject: [PATCH] Reordered the projects inside Projects data to be in the date order for easier editing :) --- data/projects/Projects.ts | 48 +++++++++++++++++++-------------------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/data/projects/Projects.ts b/data/projects/Projects.ts index 9d5f57b..70b01ff 100644 --- a/data/projects/Projects.ts +++ b/data/projects/Projects.ts @@ -12,18 +12,6 @@ import IProject from "./IProject"; //#endregion export const Projects: {[key: string]: IProject} = { - "cardboard-mod": { - state: State.Abandoned, - title: "The Cardboard Mod", - thumbnail: "./images/projects/mods/cardboard.png", //cardboardModImage, - date: new Date("21 May, 2018 @ 12:23"), - - type: "mod", - languages: ["no-code"], - tools: ["paint.net", "blender"], - system: "other", - }, - "grass-mod": { state: State.Completed, title: "The Grass Mod", @@ -36,6 +24,30 @@ export const Projects: {[key: string]: IProject} = { system: "minecraft", }, + "cardboard-mod": { + state: State.Abandoned, + title: "The Cardboard Mod", + thumbnail: "./images/projects/mods/cardboard.png", //cardboardModImage, + date: new Date("21 May, 2018 @ 12:23"), + + type: "mod", + languages: ["no-code"], + tools: ["paint.net", "blender"], + system: "other", + }, + + "html5-hangman": { + state: State.Completed, + title: "HTML5 Hangman game", + thumbnail: "./images/projects/html5/hangman.png", // hangmanHtml5Image, + date: new Date("thursday 5 March, 2020 20:20:03 +0100"), + + type: "game", + languages: ["html", "css", "js"], + tools: ["vscode"], + system: "raw html", + }, + "cannibalism-mod": { state: State.Completed, title: "The Cannibalism Mod", @@ -48,18 +60,6 @@ export const Projects: {[key: string]: IProject} = { system: "other (ingame)", }, - "html5-hangman": { - state: State.Completed, - title: "HTML5 Hangman game", - thumbnail: "./images/projects/html5/hangman.png", // hangmanHtml5Image, - date: new Date("thursday 5 March, 2020 20:20:03 +0100"), - - type: "game", - languages: ["html", "css", "js"], - tools: ["vscode"], - system: "raw html", - }, - "roblox-infinite-terrain": { state: State.Completed, title: "Roblox Infinite Terrain",