import { motion } from 'framer-motion'; import { Layers, Shield, Settings, MousePointerClick, Smartphone, BarChart3 } from 'lucide-react'; import { cn } from '../lib/utils'; export default function Features() { const features = [ { icon: , title: "Modular Structure", description: "Build once, reuse infinitely. Component-based architecture for your digital products." }, { icon: , title: "Bank-grade Security", description: "Enterprise-level protection for your content and customer data out of the box." }, { icon: , title: "Zero Setup Required", description: "Skip the technical headaches. Everything works seamlessly perfectly from day one." }, { icon: , title: "One-Click Deployment", description: "Push your products live to thousands of customers with a single action." }, { icon: , title: "Mobile Optimized", description: "Flawless experience across all devices. Never lose a sale due to poor UX." }, { icon: , title: "Advanced Analytics", description: "Deep insights into customer behavior, drop-off points, and conversion rates." } ]; return (

Everything you need.
Nothing you don't.

A comprehensive toolkit designed specifically for modern digital creators and founders.

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

{feature.title}

{feature.description}

))}
); }