Skip to content

goodbot #71

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Oct 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added public/assets/good-bot.webp
Binary file not shown.
1 change: 1 addition & 0 deletions src/app/dataModels/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,5 @@ export interface Project {
projectLead: string;
lookingFor: string[];
};
className?: string;
}
15 changes: 15 additions & 0 deletions src/components/project-card/project-card.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,21 @@ body {
display: flex;
flex-direction: column;
align-self: stretch;

@include tablet {
width: 100%;
min-width: 100%;
}

&--home-page {
@include tablet {
width: 655px;
}

@include mobile {
width: 100%;
}
}
}

.project-card-content {
Expand Down
3 changes: 2 additions & 1 deletion src/components/project-card/project-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ export default function Project({
tools,
projectKey,
projectImage,
className,
}: ProjectInterface) {
return (
<Card className="project-card project-overview__card">
<Card className={`project-card project-overview__card ${className}`}>
<CardMedia
component="a"
className="project-card-media"
Expand Down
7 changes: 4 additions & 3 deletions src/components/project-overview/project-overview.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,14 @@
}

&__card-container {
display: flex;
display: grid;
grid-template-columns: repeat(3, 1fr);
justify-content: center;
align-items: flex-start;
gap: 2rem;

@media only screen and (max-width: 640px) {
flex-direction: column;
@include tablet {
grid-template-columns: 1fr;
}
}

Expand Down
1 change: 1 addition & 0 deletions src/components/project-overview/project-overview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ export default async function ProjectOverview() {
status={project.status}
projectImage={project.projectImage}
projectKey={projectKey}
className="project-card--home-page"
/>
</Fragment>
);
Expand Down
45 changes: 45 additions & 0 deletions src/json/projects.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,50 @@
"projectLead": "Sam Huo",
"lookingFor": []
}
},
"good-bot": {
"title": "GoodBot - Canadian Responsible Tech Hub",
"description": "The GoodBot non-profit is developing the Canadian Responsible Tech Hub, with assistance from Code for BC. This initiative aims to map Canada’s responsible technology ecosystem, providing a centralized resource for organizations, policymakers, and individuals. The hub will document organizations, policies, scholars, and key resources to support ethical technology practices in Canada.",
"links": [
{
"title": "GitHub",
"url": "https://github.com/GoodBotNonProfit/canadian-tech-library"
}
],
"languages": ["React", "Python", "JavaScript", "SQL"],
"tools": ["PostgreSQL", "Supabase", "Google Suite", "GitHub", "Tableau"],
"technologies": [
"Machine Learning",
"Data Visualization",
"Policy Summarization"
],
"programAreas": ["Ethical Tech", "Policy and Law"],
"location": "Remote",
"status": "Active",
"contributors": [
"Fauwial Khan",
"Ahmad Akhtar",
"Glauber Martins",
"Jaskaran Dhanoa"
],
"projectImage": "/assets/good-bot.webp",
"projectOverview": {
"problemStatement": "As technology evolves rapidly, there is an urgent need for a responsible tech ecosystem in Canada that can address the ethical implications and societal impacts of new technologies. The Good-Bot non-profit seeks to create a Canadian Responsible Tech Hub to map out the nation's capacity to respond to emerging issues in technology. The lack of transparency, regulatory challenges, and insufficient tools have made it difficult to fully understand the risks and gaps in the tech landscape.",
"projectObjectives": [
"Map Canada's responsible tech organizations, policies, and key experts",
"Develop machine-generated summaries of tech-related policies and litigation",
"Create dynamic dashboards visualizing the gaps in responsible tech initiatives",
"Facilitate ongoing updates and collaboration through community engagement"
],
"projectLead": "Sam Huo",
"lookingFor": [
"Technology Lead",
"Frontend Developers",
"Senior Developers",
"Data Engineers",
"Policy Experts",
"Machine Learning Engineers"
]
}
}
}
Loading