import { motion } from 'framer-motion'; import { Code, Cpu, Layers, Zap, Globe, Shield } from 'lucide-react'; export default function Features() { const features = [ { icon: , title: "Neural Processing", description: "Our AI engine analyzes user behavior to create personalized scrolling experiences in real-time." }, { icon: , title: "3D Depth Perception", description: "Advanced parallax effects create an immersive environment that responds to your movements." }, { icon: , title: "Lightning Fast", description: "Optimized rendering engine ensures smooth performance even with complex 3D scenes." }, { icon: , title: "Global Infrastructure", description: "Edge computing network delivers content from the nearest server for minimal latency." }, { icon: , title: "Privacy First", description: "Advanced encryption ensures your data remains secure while experiencing our 3D interfaces." }, { icon: , title: "Developer Friendly", description: "Easy-to-integrate SDKs and comprehensive documentation for seamless implementation." } ]; return ( Advanced AI Features Experience the next evolution of web interaction with our cutting-edge AI-powered 3D scrolling technology. {features.map((feature, index) => ( {feature.icon} {feature.title} {feature.description} ))} ); }
{feature.description}