Skip to content
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

Update Tech Stack on open source page #170

Merged
merged 9 commits into from
Aug 5, 2024
Binary file added dump.rdb
phoenixpereira marked this conversation as resolved.
Show resolved Hide resolved
Binary file not shown.
4 changes: 4 additions & 0 deletions src/constants/colours.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ export const TECH_COLORS = {
Supabase: '#5DBBB5',
'Tailwind CSS': '#907FC3',
TypeScript: '#ACCB00',
Requests: '#FFD166',
Vite: '#646464',
phoenixpereira marked this conversation as resolved.
Show resolved Hide resolved
'Pragmatic Drag & Drop': '#FF6F61',
NextUI: '#A8DADC',
phoenixpereira marked this conversation as resolved.
Show resolved Hide resolved
} as const satisfies Record<TechStack, string>;

/**
Expand Down
4 changes: 4 additions & 0 deletions src/constants/tech-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,9 @@ export const TECH_STACK = [
'Tailwind CSS',
'Supabase',
'Discord.py',
'Requests',
'Vite',
'Pragmatic Drag & Drop',
'NextUI',
phoenixpereira marked this conversation as resolved.
Show resolved Hide resolved
] as const;
export type TechStack = (typeof TECH_STACK)[number];
13 changes: 10 additions & 3 deletions src/data/future-projects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,26 @@ export const FUTURE_PROJECTS: FutureProject[] = [
title: 'Courses API',
description:
'Scrapes course info from the UofA website and provides course data for other projects through an API endpoint.',
techStacks: ['Python', 'FastAPI'],
techStacks: ['Python', 'FastAPI', 'Requests'],
},
{
title: 'MyTimetable',
description:
'An interactive drag-and-drop timetable scheduler to help UofA students optimise their weekly timetable.',
techStacks: ['TypeScript', 'React', 'Next.js', 'Tailwind CSS'],
techStacks: [
'TypeScript',
'React',
'Vite',
'Pragmatic Drag & Drop',
'NextUI',
'Tailwind CSS',
],
},
{
title: 'MyStudyPlan',
description:
'A UofA degree planner that allows you to explore and validate your degree structure.',
techStacks: ['TypeScript', 'React', 'Next.js', 'Tailwind CSS'],
techStacks: ['TypeScript', 'React', 'Vite', 'Tailwind CSS'],
},
{
title: 'MyCourseReviews',
Expand Down