Skip to content

Commit 445f5cc

Browse files
feat: adds project descriptions for the 25-26 teams (#105)
1 parent 6fd2c6f commit 445f5cc

2 files changed

Lines changed: 17 additions & 12 deletions

File tree

app/projects/page.tsx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default function ProjectsPage() {
1010
<div>
1111
<Banner
1212
title="Projects"
13-
text="Since our founding in 2020, we’ve had the pleasure to work with 10 non-profits!"
13+
text="Since our founding in 2020, we’ve had the pleasure to work with 14 non-profits!"
1414
button={{ text: "Contact us", link: "/for-nonprofits" }}
1515
/>
1616
<Container size="xl">
@@ -28,12 +28,12 @@ export default function ProjectsPage() {
2828
>
2929
<ProjectsCardWModal
3030
name="The Inga Foundation"
31-
description="Coming Soon!"
31+
description="A data management and visualization platform tracking environmental impact."
3232
image={"projects/inga.jpg"}
3333
hasOverlay={true}
3434
years={["2025-2026"]}
35-
projectDescription="Coming Soon!"
36-
nonprofitDescription="Coming Soon!"
35+
projectDescription="This project develops a platform to input, organise, and visualize agricultural and environmental impact data from field activities. The system allows staff to manage data more efficiently and generate shareable dashboards that highlight measurable outcomes for donors."
36+
nonprofitDescription="The Inga Foundation is working to replace slash-and-burn agriculture with sustainable farming practices using Inga trees. By restoring soil fertility and supporting smallholder farmers, the organization promotes long-term food security while protecting tropical forests."
3737
team={[
3838
{
3939
name: "Pranav Rao",
@@ -111,12 +111,12 @@ export default function ProjectsPage() {
111111
/>
112112
<ProjectsCardWModal
113113
name="Toronto Rape Crisis Centre"
114-
description="Coming Soon!"
114+
description="A centralized volunteer management system designed to streamline data and internal operations."
115115
image={"projects/trcc.jpg"}
116116
hasOverlay={true}
117117
years={["2025-2026"]}
118-
projectDescription="Coming Soon!"
119-
nonprofitDescription="Coming Soon!"
118+
projectDescription="We are building a custom membership system to help TRCC efficiently organize, track, and support their volunteer network. This digital infrastructure ensures that those coordinating vital support have the resources they need at their fingertips."
119+
nonprofitDescription="Toronto Rape Crisis Centre (TRCC) aims to provide anti-oppressive, feminist peer support to survivors of sexual violence, of all genders and identities, through counselling, group support, education, advocacy, and activism."
120120
team={[
121121
{
122122
name: "Jack Le",
@@ -189,12 +189,12 @@ export default function ProjectsPage() {
189189
/>
190190
<ProjectsCardWModal
191191
name="The Museum of Art and Digital Entertainment (MADE)"
192-
description="Coming Soon!"
192+
description="A digital cataloguing and inventory management system to manage thousands of artifacts."
193193
image={"projects/made.jpg"}
194194
hasOverlay={true}
195195
years={["2025-2026"]}
196-
projectDescription="Coming Soon!"
197-
nonprofitDescription="Coming Soon!"
196+
projectDescription="Our team is building a web-based collection management system that allows staff and volunteers to catalogue artifacts, manage storage containers, and review new item submissions. It improves accessibility for volunteers by making it easier to view and update records across devices."
197+
nonprofitDescription="The Museum of Art and Digital Entertainment (MADE) is museum dedicated to preserving and celebrating the history of video games and digital creativity. Through exhibitions, education programs, and community events, MADE works to document the cultural impact of games and interactive media."
198198
team={[
199199
{
200200
name: "Vivian Deng",

components/project-overlay/ProjectOverlay.tsx

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,15 +60,20 @@ export default function ProjectOverlay(props: ProjectOverlayProps) {
6060
href={props.webLink}
6161
variant="transparent"
6262
>
63-
<Image src="/globe-fill.svg" alt="Web Icon" />
63+
<Image src="/globe-fill.svg" alt="Web Icon" w={28} h={28} />
6464
</ActionIcon>
6565
<ActionIcon
6666
component="a"
6767
size={45}
6868
href={props.githubLink}
6969
variant="transparent"
7070
>
71-
<Image src="/mark-github-24.svg" alt="GitHub Icon" />
71+
<Image
72+
src="/mark-github-24.svg"
73+
alt="GitHub Icon"
74+
w={28}
75+
h={28}
76+
/>
7277
</ActionIcon>
7378
</Flex>
7479
</Modal.Header>

0 commit comments

Comments
 (0)