Skip to content

Commit 36286d7

Browse files
committed
feat: add Rules of Machine Learning memorization app to projects
1 parent 864f196 commit 36286d7

3 files changed

Lines changed: 20 additions & 2 deletions

File tree

src/components/About.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ const About: React.FC = () => {
110110
problems and deliver exceptional user experiences.
111111
</p>
112112
<p className="text-base sm:text-lg text-gray-600 mb-6 sm:mb-8">
113-
With experience across 12+ diverse projects and 50+ technologies including React, Next.js, Node.js, Python, Hugo, and various AI/ML frameworks, I bring ideas to life through clean, efficient, and scalable code. I'm constantly learning and exploring new technologies to stay at the forefront of web development and AI innovation.
113+
With experience across 15+ diverse projects and 50+ technologies including React, Next.js, Node.js, Python, Hugo, and various AI/ML frameworks, I bring ideas to life through clean, efficient, and scalable code. I'm constantly learning and exploring new technologies to stay at the forefront of web development and AI innovation.
114114
</p>
115115

116116
{/* Technology Chips */}

src/components/Hero.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ const Hero: React.FC = () => {
142142
transition={{ duration: 0.8, delay: 1.2 }}
143143
>
144144
<div className="text-center text-white">
145-
<h3 className="text-2xl sm:text-3xl font-bold mb-1 text-blue-200">12+</h3>
145+
<h3 className="text-2xl sm:text-3xl font-bold mb-1 text-blue-200">15+</h3>
146146
<p className="text-xs sm:text-sm text-blue-100 font-semibold">Projects</p>
147147
</div>
148148
<div className="text-center text-white">

src/utils/constants.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ import {
2626
FaCar,
2727
FaPuzzlePiece,
2828
FaUtensils,
29+
FaBook,
2930
} from 'react-icons/fa';
3031

3132
import type {
@@ -393,4 +394,21 @@ export const PROJECTS: Project[] = [
393394
'Modern UI/UX',
394395
],
395396
},
397+
{
398+
id: 15,
399+
title: 'Rules of Machine Learning - Memorization App',
400+
description:
401+
'A modern, interactive web application to help memorize Google\'s 43 Rules of Machine Learning Engineering. Features three study modes: Browse Mode with category filtering and search, Study Mode for sequential learning with progress tracking, and Flashcard Mode for randomized learning with navigation controls.',
402+
technologies: ['Next.js 15', 'TypeScript', 'Tailwind CSS', 'Vercel'],
403+
githubUrl: 'https://github.com/davidagustin/rules-of-machine-learning',
404+
liveUrl: 'https://rules-of-machine-learning.vercel.app/',
405+
icon: FaBook,
406+
category: 'AI/ML Education',
407+
features: [
408+
'43 ML Engineering Rules',
409+
'Three Study Modes',
410+
'Category Filtering',
411+
'Progress Tracking',
412+
],
413+
},
396414
];

0 commit comments

Comments
 (0)