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
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ next-env.d.ts

# SQLite dev database
*.db
*.sqlite
*.sqlite
KnightRadiant44 marked this conversation as resolved.
Show resolved Hide resolved
5 changes: 5 additions & 0 deletions src/constants/colours.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,20 @@ export const BORDER_COLOURS = {
purple: 'border-purple border-2',
} as const satisfies Record<Colour, string>;

// the list below is sorted in alphabetical order by tech stack name
export const TECH_COLORS = {
'Discord.py': '#7387CE',
FastAPI: '#F6BF00',
NextUI: '#A8DADC',
'Next.js': '#B17CA6',
'Pragmatic Drag & Drop': '#FF6F61',
Python: '#64B550',
React: '#ED8C9B',
Requests: '#FFD166',
phoenixpereira marked this conversation as resolved.
Show resolved Hide resolved
Supabase: '#5DBBB5',
'Tailwind CSS': '#907FC3',
TypeScript: '#ACCB00',
Vite: '#646464',
phoenixpereira marked this conversation as resolved.
Show resolved Hide resolved
} as const satisfies Record<TechStack, string>;

/**
Expand Down
15 changes: 10 additions & 5 deletions src/constants/tech-stack.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
// the list below is sorted in alphabetical order by tech stack name
export const TECH_STACK = [
'Python',
'Discord.py',
'FastAPI',
'TypeScript',
'React',
'Next.js',
'Tailwind CSS',
'NextUI',
'Pragmatic Drag & Drop',
'Python',
'React',
'Requests',
'Supabase',
'Discord.py',
'Tailwind CSS',
'TypeScript',
'Vite',
] 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