61 lines
1.9 KiB
JavaScript
61 lines
1.9 KiB
JavaScript
import React from 'react';
|
|
import { Zap, Shield, Globe, Code } from 'lucide-react';
|
|
|
|
function AboutFeatureGrid() {
|
|
const features = [
|
|
{
|
|
icon: <Zap className="w-8 h-8 text-blue-600" />,
|
|
title: 'Lightning Fast',
|
|
description: 'Optimized for performance with modern web standards'
|
|
},
|
|
{
|
|
icon: <Shield className="w-8 h-8 text-blue-600" />,
|
|
title: 'Secure by Default',
|
|
description: 'Built with security best practices from the ground up'
|
|
},
|
|
{
|
|
icon: <Globe className="w-8 h-8 text-blue-600" />,
|
|
title: 'Global Scale',
|
|
description: 'Deploy worldwide with our global infrastructure'
|
|
},
|
|
{
|
|
icon: <Code className="w-8 h-8 text-blue-600" />,
|
|
title: 'Developer First',
|
|
description: 'Clean APIs and excellent developer experience'
|
|
}
|
|
];
|
|
|
|
return (
|
|
<section className="py-16 bg-gray-50">
|
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
|
<div className="text-center mb-12">
|
|
<h2 className="text-3xl md:text-4xl font-bold text-gray-900 mb-4">
|
|
Why choose our platform?
|
|
</h2>
|
|
<p className="text-xl text-gray-600 max-w-2xl mx-auto">
|
|
Everything you need to build modern web applications
|
|
</p>
|
|
</div>
|
|
|
|
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
|
|
{features.map((feature, index) => (
|
|
<div key={index} className="bg-white p-6 rounded-lg shadow-sm hover:shadow-md transition-shadow">
|
|
<div className="mb-4">
|
|
{feature.icon}
|
|
</div>
|
|
<h3 className="text-xl font-semibold text-gray-900 mb-2">
|
|
{feature.title}
|
|
</h3>
|
|
<p className="text-gray-600">
|
|
{feature.description}
|
|
</p>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|
|
|
|
export default AboutFeatureGrid;
|