forked from emre/www_projectmycelium_com
76 lines
2.6 KiB
TypeScript
76 lines
2.6 KiB
TypeScript
import { motion } from 'framer-motion'
|
|
import { Container } from '../../components/Container'
|
|
|
|
const features = [
|
|
{
|
|
icon: '☁️',
|
|
title: 'Cloud-Native Architecture',
|
|
description: 'Built for the cloud with support for all major cloud providers and on-premise deployments.',
|
|
},
|
|
{
|
|
icon: '🛡️',
|
|
title: 'Enterprise Security',
|
|
description: 'Advanced security features including RBAC, network policies, and compliance monitoring.',
|
|
},
|
|
{
|
|
icon: '📊',
|
|
title: 'Real-time Monitoring',
|
|
description: 'Comprehensive monitoring and alerting with detailed metrics and performance insights.',
|
|
},
|
|
{
|
|
icon: '🚀',
|
|
title: 'One-Click Deployments',
|
|
description: 'Streamlined deployment process with automated CI/CD pipelines and rollback capabilities.',
|
|
},
|
|
{
|
|
icon: '👥',
|
|
title: 'Team Collaboration',
|
|
description: 'Built-in collaboration tools for teams with role-based access and shared workspaces.',
|
|
},
|
|
{
|
|
icon: '⚙️',
|
|
title: 'Advanced Configuration',
|
|
description: 'Flexible configuration management with support for Helm charts and custom resources.',
|
|
},
|
|
]
|
|
|
|
export function FeaturesSection() {
|
|
return (
|
|
<section className="bg-gray-50 py-20 lg:py-32">
|
|
<Container>
|
|
<motion.div
|
|
initial={{ opacity: 0, y: 20 }}
|
|
whileInView={{ opacity: 1, y: 0 }}
|
|
viewport={{ once: true }}
|
|
transition={{ duration: 0.8 }}
|
|
className="text-center mb-16"
|
|
>
|
|
<h2 className="text-3xl lg:text-4xl font-medium tracking-tight text-gray-900">
|
|
Everything You Need to Succeed
|
|
</h2>
|
|
<p className="mt-6 text-lg text-gray-600 max-w-3xl mx-auto">
|
|
Powerful tools and features designed for modern cloud-native applications
|
|
</p>
|
|
</motion.div>
|
|
|
|
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
|
|
{features.map((feature, index) => (
|
|
<motion.div
|
|
key={feature.title}
|
|
initial={{ opacity: 0, y: 20 }}
|
|
whileInView={{ opacity: 1, y: 0 }}
|
|
viewport={{ once: true }}
|
|
transition={{ duration: 0.5, delay: index * 0.1 }}
|
|
className="rounded-2xl bg-white border border-gray-200 p-8 hover:border-cyan-500 hover:shadow-lg transition-all duration-300 text-center"
|
|
>
|
|
<div className="text-4xl mb-4">{feature.icon}</div>
|
|
<h3 className="text-xl font-semibold text-gray-900 mb-3">{feature.title}</h3>
|
|
<p className="text-gray-600">{feature.description}</p>
|
|
</motion.div>
|
|
))}
|
|
</div>
|
|
</Container>
|
|
</section>
|
|
)
|
|
}
|