From 8285f8941d76dafa0c4657ce24192f8ea7145a22 Mon Sep 17 00:00:00 2001 From: development Date: Tue, 20 Jan 2026 13:57:07 +0000 Subject: [PATCH] Add src/components/sections/about/AboutCardFeature.js --- .../sections/about/AboutCardFeature.js | 49 +++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 src/components/sections/about/AboutCardFeature.js diff --git a/src/components/sections/about/AboutCardFeature.js b/src/components/sections/about/AboutCardFeature.js new file mode 100644 index 0000000..e707ff8 --- /dev/null +++ b/src/components/sections/about/AboutCardFeature.js @@ -0,0 +1,49 @@ +import React from 'react'; +import { CheckCircle } from 'lucide-react'; + +function AboutCardFeature() { + const features = [ + 'Modern React components', + 'TypeScript support', + 'Responsive design', + 'Accessibility built-in', + 'Custom theming', + 'Developer tools' + ]; + + return ( +
+
+
+
+

+ Everything you need to build faster +

+

+ Our comprehensive component library includes everything you need to build modern web applications quickly and efficiently. +

+ +
+ {features.map((feature, index) => ( +
+ + {feature} +
+ ))} +
+ + +
+ +
+ Features +
+
+
+
+ ); +} + +export default AboutCardFeature;