Skip to content

Commit e37315f

Browse files
committed
feat: add System Design Learning Application project
- Add comprehensive system design learning platform to projects - Include 50 study materials, 40 core concepts, 60 quiz questions - Features dark mode support and advanced progress tracking - Perfect for developers preparing for system design interviews - GitHub: https://github.com/davidagustin/system-design-practice - Live demo: https://system-design-practice.vercel.app/
1 parent c58fb5a commit e37315f

1 file changed

Lines changed: 20 additions & 2 deletions

File tree

src/utils/constants.ts

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ import {
2828
FaPuzzlePiece,
2929
FaUtensils,
3030
FaBook,
31+
FaLaptopCode,
3132
} from 'react-icons/fa';
3233

3334
import type {
@@ -282,15 +283,15 @@ export const PROJECTS: Project[] = [
282283
id: 8,
283284
title: 'AI Learning Hub',
284285
description:
285-
'A comprehensive Next.js application for learning AI and machine learning concepts through interactive mnemonics, character-based learning, and quizzes. Features 30+ learning sections with 1000+ quiz questions.',
286+
'A comprehensive Next.js application for learning AI and machine learning concepts through interactive mnemonics, character-based learning, and quizzes. Features 30+ learning sections with hundreds of quiz questions.',
286287
technologies: ['Next.js 15', 'TypeScript', 'Tailwind CSS', 'React Hooks', 'Vercel'],
287288
githubUrl: 'https://github.com/davidagustin/comprehensive-ai-learning-app',
288289
liveUrl: 'https://comprehensive-ai-learning-app.vercel.app',
289290
icon: FaBrain,
290291
category: 'Education/AI',
291292
features: [
292293
'Interactive Learning',
293-
'1000+ Quiz Questions',
294+
'Hundreds of Quiz Questions',
294295
'Character-based Learning',
295296
'30+ AI/ML Topics',
296297
],
@@ -431,4 +432,21 @@ export const PROJECTS: Project[] = [
431432
'ASL Alphabet Guide',
432433
],
433434
},
435+
{
436+
id: 17,
437+
title: '🧠 System Design Learning Application',
438+
description:
439+
'A comprehensive, interactive learning platform designed to help developers master system design interviews through structured study materials, core concepts, interactive quizzes, and progress tracking. Features 50 study materials covering fundamentals to cutting-edge technologies, 40 core concepts with essential patterns and advanced principles, 60 quiz questions with progressive difficulty, and advanced progress tracking with dark mode support. Perfect for developers preparing for senior-level interviews at top tech companies.',
440+
technologies: ['Next.js 15', 'React 19', 'TypeScript', 'Tailwind CSS', 'Vercel'],
441+
githubUrl: 'https://github.com/davidagustin/system-design-practice',
442+
liveUrl: 'https://system-design-practice.vercel.app/',
443+
icon: FaLaptopCode,
444+
category: 'Education/System Design',
445+
features: [
446+
'50 Study Materials',
447+
'40 Core Concepts',
448+
'60 Quiz Questions',
449+
'Dark Mode Support',
450+
],
451+
},
434452
];

0 commit comments

Comments
 (0)