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;