export interface Project { title: string; description: string; date: string; href: string; note?: string; } export const projects: Project[] = [ { title: "Box Critters Localbox", description: "Looking to relive Box Critters, a defunct virtual world made by Rocketsnail Games, well you're in luck! In this GitHub organization, you can find: a Typescript, unofficial server remake of the game server, documentation surrounding the game, and an Electron desktop app for playing the game locally.", date: "since November 2024", href: "https://github.com/Box-Critters-Localbox/", }, { title: "Toonkins Retooned", description: "Looking to relive Toonkins, a defunct virtual world made by Shenanigames, well you're in luck! In this Github organization, you can find: a Typescript, unofficial server remake of the game server, and a decompiled Unity project reassembly of the game (Unity project source coming soon).", date: "since October 2024", href: "https://github.com/ToonkinsRetooned/", note: 'Note: "Retooned" is purposely spelled wrong, I know how to spell I swear 😭', }, { title: "Poly+ Rewrite", description: "A rewrite of Poly+, my quality-of-life browser extension for Polytoria.com. Built entirely fresh using the WXT extension framework, Typescript, and with added better overall code quality. This version is not public yet.", date: "since October 2024, work in progress (private)", href: "#", }, { title: "PolyCode", description: "PolyCode provides free code snippets, tutorials, and toolbox resources for Polytoria.", date: "since August 2023, archived", href: "https://polycode.vercel.app", note: "Note: This was made awhile ago, and if I were to redo it, I'd implement SSR instead of doing JSON file fetching.", }, { title: "Poly+", description: "Poly+ is a quality-of-life Chromium-based extension for Polytoria!", date: "since February 2023, archived", href: "https://github.com/indexxing/PolyPlus/", }, ];