Add new features to FeatureCards component: include 'Privacy Focused' and 'Open Source' cards with corresponding icons and descriptions to enhance the showcase of expertise.

This commit is contained in:
Craig
2025-04-16 11:04:40 +01:00
parent c3375f6cfd
commit 44aa84a127

View File

@@ -1,4 +1,4 @@
import { FaChartLine, FaEye, FaMessage } from 'react-icons/fa6'; import { FaChartLine, FaEye, FaMessage, FaShield, FaCode } from 'react-icons/fa6';
import { import {
Badge, Badge,
Card, Card,
@@ -30,6 +30,18 @@ const mockdata = [
"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: FaChartLine, icon: FaChartLine,
}, },
{
title: 'Privacy Focused',
description:
"Your data is valuable and sensitive. All my solutions are built with privacy and security in mind from the ground up, ensuring regulatory compliance and protecting your competitive advantage.",
icon: FaShield,
},
{
title: 'Open Source',
description:
"Leverage the power and innovation of open source technologies while avoiding vendor lock-in. This approach provides transparency, cost-effectiveness, and ensures your solutions remain maintainable long-term.",
icon: FaCode,
},
]; ];
export function FeaturesCards() { export function FeaturesCards() {