Skip to content

Commit 9f125dc

Browse files
committed
refactor: ♻️ projects data
1 parent 75650fe commit 9f125dc

3 files changed

Lines changed: 92 additions & 0 deletions

File tree

public/dl-banner.webp

242 KB
Loading

public/peterplate-banner.webp

348 KB
Loading

src/data/projects.ts

Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
export interface Project {
2+
/* URL to image for project icon if on homepage */
3+
iconImgSrc?: string;
4+
/* URL to an image for the project */
5+
imgSrc?: string;
6+
/* URL to the project */
7+
href: string;
8+
/* URL to the project's repository */
9+
repo?: string;
10+
/* The project's title */
11+
title: string;
12+
/* A short description of the project */
13+
shortDesc: string;
14+
/* The date of work on the project */
15+
date: string;
16+
/* Tags for organization */
17+
tags: string[];
18+
/* Whether or not to showcase on the homepage */
19+
homepage?: boolean;
20+
}
21+
22+
export const PROJECTS: Project[] = [
23+
{
24+
iconImgSrc: "/logo-pp.webp",
25+
imgSrc: "/peterplate-banner.webp",
26+
href: "https://peterplate.com",
27+
repo: "https://github.com/icssc/PeterPlate",
28+
title: "PeterPlate",
29+
shortDesc: "Discover dining options and plan meals at UC Irvine.",
30+
date: "December 2024 - Now",
31+
tags: ["Tool", "Web", "UCI"],
32+
homepage: true,
33+
},
34+
{
35+
iconImgSrc: "/logo-dl.webp",
36+
imgSrc: "/dl-banner.webp",
37+
href: "https://deadlock.jacobmoy.com",
38+
repo: "https://github.com/EightBitByte/deadlock-tier-list",
39+
title: "Deadlock Tier List",
40+
shortDesc:
41+
"Vote on the viability of your favorite characters from Deadlock.",
42+
date: "January 2026",
43+
tags: ["Game", "Tool"],
44+
homepage: true,
45+
},
46+
{
47+
iconImgSrc: "/logo-lc.webp",
48+
imgSrc: "/lc-banner.webp",
49+
href: "https://github.com/EightBitByte/leetcode-watcher",
50+
title: "Leetcode Watcher",
51+
shortDesc:
52+
"Monitor friends' LeetCode progress and get live updates all without leaving Discord.",
53+
date: "Mar. 2025",
54+
tags: ["Tool", "Bot"],
55+
homepage: true,
56+
},
57+
{
58+
href: "https://github.com/EightBitByte/buckshot-roulette-sim",
59+
title: "Buckshot Roulette Sim",
60+
shortDesc:
61+
"Running experiments on different viable strategems for the game Buckshot Roulette.",
62+
date: "Dec. 2024",
63+
tags: ["Game", "Tool", "Experiment", "WIP"],
64+
},
65+
{
66+
iconImgSrc: "/exsanguination.webp",
67+
imgSrc: "/exsanguination-banner.webp",
68+
href: "https://github.com/EightBitByte/exsanguination",
69+
title: "Exsanguination",
70+
shortDesc: "Defend against the encroaching virus and infected hordes.",
71+
date: "Oct. 2024",
72+
tags: ["Game", "WIP"],
73+
},
74+
{
75+
imgSrc: "/seafarer-banner.webp",
76+
href: "https://github.com/ambientserenity/project-seafarer",
77+
title: "Project Seafarer",
78+
shortDesc:
79+
"Sail the sea in search of treasure, friendship and adventure.[N]Developed for UCSD's 2024 DiamondHacks.",
80+
date: "Apr. 2024",
81+
tags: ["Game", "Hackathon"],
82+
},
83+
{
84+
imgSrc: "/studyzot-banner.webp",
85+
href: "https://github.com/bjsilva01/studyzot",
86+
title: "StudyZot",
87+
shortDesc:
88+
"Find a study spot on UCI campus near you.[N]Built over the course of a week for ICSSC's 2023 Webjam.",
89+
date: "Nov. 2023",
90+
tags: ["Game", "Hackathon"],
91+
},
92+
];

0 commit comments

Comments
 (0)