From 30fbe7be3559ebb07745f267ef78e25a99e6e13c Mon Sep 17 00:00:00 2001 From: Craig Date: Wed, 16 Apr 2025 11:22:31 +0100 Subject: [PATCH] Add new feature card to FeatureCards component: introduce 'Cutting-Edge Research' card with an icon and description to highlight ongoing advancements in AI research. --- .../src/components/FeatureCards/FeatureCards.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/frontend/vite-template-master/src/components/FeatureCards/FeatureCards.tsx b/frontend/vite-template-master/src/components/FeatureCards/FeatureCards.tsx index 9e097cf..afa75ad 100644 --- a/frontend/vite-template-master/src/components/FeatureCards/FeatureCards.tsx +++ b/frontend/vite-template-master/src/components/FeatureCards/FeatureCards.tsx @@ -1,4 +1,4 @@ -import { FaChartLine, FaEye, FaMessage, FaShield, FaCode } from 'react-icons/fa6'; +import { FaChartLine, FaEye, FaMessage, FaShield, FaCode, FaLightbulb } from 'react-icons/fa6'; import { Badge, Card, @@ -42,6 +42,12 @@ const mockdata = [ "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, }, + { + title: 'Cutting-Edge Research', + description: + "I stay continuously updated with the latest advancements in AI research and immediately apply emerging techniques to solve business problems. Your solutions will never be outdated or obsolete.", + icon: FaLightbulb, + }, ]; export function FeaturesCards() {