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 (

Everything You Need to Succeed

Powerful tools and features designed for modern cloud-native applications

{features.map((feature, index) => (
{feature.icon}

{feature.title}

{feature.description}

))}
) }