Skip to content

Commit 29a1355

Browse files
author
Jasmine Shih
authored
Merge pull request #1 from acm-uiuc/add_projects
added current and past projects
2 parents 4bcbe90 + 24e5f18 commit 29a1355

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

src/Projects.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const Projects = () => {
2323
</div>
2424
<h2>Past</h2>
2525
<div className="row mr-3 ml-3">
26-
{projects.current.map(item => (
26+
{projects.past.map(item => (
2727
<Project item={item} key={item.name} />
2828
))}
2929
</div>

src/data/data.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,31 +6,31 @@ export const projects = {
66
"A tiny little squirrel is crossing the street, and there comes a car..."
77
},
88
{
9-
name: "Lorem ipsum",
9+
name: "Sunny",
1010
description:
11-
"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
11+
"A short animation about an alarm clock owned by a college student."
1212
},
1313
{
14-
name: "Lorem ipsum",
14+
name: "Pro Bending VR",
1515
description:
16-
"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
16+
"A Pro Bending game developed in VR."
1717
}
1818
],
1919
past: [
2020
{
21-
name: "Lorem ipsum",
21+
name: "Curvature",
2222
description:
23-
"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
23+
"A short animation about a triangle who finally finds his sense of belonging in a group of circles."
2424
},
2525
{
26-
name: "Lorem ipsum",
26+
name: "In Darkness",
2727
description:
28-
"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
28+
"A game where you are put in darkness and learn your surroundings through walking around, knocking things over, and listening for noises."
2929
},
3030
{
31-
name: "Lorem ipsum",
31+
name: "Mesozoic Park",
3232
description:
33-
"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
33+
"An interactive dinosaur park where players can explore an island populated by five kinds of dinosaurs and watch them eat, move, and roar."
3434
}
3535
]
3636
};

0 commit comments

Comments
 (0)