-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.js
51 lines (51 loc) · 2.04 KB
/
data.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
export const projects = [
{
name: "MeetYourMajor",
desc: "Skill and interest inventory assessment that college students can take to find their best-fit major",
authors: ["Angel", "Juan", "Jorge", "Shehzad"],
date: "Mar 21st, 2022 - April 20th, 2022",
url: "https://i.imgur.com/Jj0hEs9.jpg",
bg: "https://i.imgur.com/DyPu0n0.gif",
bgcolor: "#db7093",
index: 0
},
{
name: "Voxel-Jump",
desc: "Fun Doodle Jump-esque platformer built on NextJS, React (UI), HTMLCanvas (gameplay), and socketio (Room-based multiplayer).",
authors: ["Angel"],
date: "May 5th 2022 - Present",
url: "https://i.imgur.com/X72H6zr.png",
bg: "https://i.imgur.com/kJ7vFIU.png",
bgcolor:"#ed779a",
index:1
},
{
name: "Degrees of Separation Finder",
desc: "Command-line program that implements DFS and Djikstra's Search algorithm to find the minimum degrees of separation between any two nodes in a graph. Utilized on a graph with more than 400,000 nodes and a million edges",
authors: ["Angel", "Jeya", "Jenna"],
date: "Fall Semester 2021",
url: "https://i.imgur.com/vKg5Nb7.png",
bgcolor: "#31558C",
index: 2
},
{
name: "Portfolio Website",
desc: "A small, modern portfolio website built on a mix of NEXTJS, React, TailwindCSS, and, in the future, Firebase! Deployed on Netlify",
authors: ["Angel"],
date: "5/2/2022",
url: "https://i.imgur.com/k8yFK4K.png",
bg: "https://i.imgur.com/nFJT26i.png",
bgcolor: "#353935",
index:3
},
{
name: "Minesweeper Replica",
desc: "C++ Application that uses SFML to display a fully-functioning minesweeper replica. Able to read existing boards and generate new ones",
authors: ["Angel"],
date: "Spring Semester 2021",
url: "https://i.imgur.com/qvwoguP.png",
bg: "https://i.imgur.com/1xjdmKY.png",
bgcolor:"#353935",
index: 4
}
]