Update FeatureCards component icons: replace existing icons with new ones for improved visual representation of skills in computer vision, natural language processing, and data science.

This commit is contained in:
Craig
2025-04-16 10:50:05 +01:00
parent 7ef669f852
commit 3899e37f1e

View File

@@ -1,4 +1,4 @@
import { FaCookieBite, FaGaugeHigh, FaUser } from 'react-icons/fa6'; import { FaChartLine, FaEye, FaMessage } from 'react-icons/fa6';
import { import {
Badge, Badge,
Card, Card,
@@ -16,19 +16,19 @@ const mockdata = [
title: 'Computer Vision', title: 'Computer Vision',
description: description:
'I have experience in building computer vision models for a range of applications, from object detection to image segmentation.', 'I have experience in building computer vision models for a range of applications, from object detection to image segmentation.',
icon: FaGaugeHigh, icon: FaEye,
}, },
{ {
title: 'Natural Language Processing', title: 'Natural Language Processing',
description: description:
'I have experience in building natural language processing models for a range of applications, from sentiment analysis to text classification.', 'I have experience in building natural language processing models for a range of applications, from sentiment analysis to text classification.',
icon: FaUser, icon: FaMessage,
}, },
{ {
title: 'Data Science', title: 'Data Science',
description: description:
"Sometimes you just need a simple model and some nice graphs. I can help you understand your data and build a model that works for you.", "Sometimes you just need a simple model and some nice graphs. I can help you understand your data and build a model that works for you.",
icon: FaCookieBite, icon: FaChartLine,
}, },
]; ];