import { Zap, Shield, Globe, GitBranch, Palette, Database, Lock, Cpu } from 'lucide-react'; const features = [ { icon: Zap, title: 'Lightning Fast', description: 'Go from idea to deployed app in under 60 seconds. Our AI understands your intent and generates production-quality code instantly.', color: 'from-yellow-400 to-orange-500', }, { icon: Shield, title: 'Type-Safe by Default', description: 'Every line of generated code is fully typed with TypeScript. Catch errors before they reach your users.', color: 'from-blue-400 to-cyan-500', }, { icon: Globe, title: 'Deploy Anywhere', description: 'One-click deployments to Vercel, Netlify, or any platform. Your app goes live the moment you ship it.', color: 'from-green-400 to-emerald-500', }, { icon: GitBranch, title: 'Git-Native Workflow', description: 'Built-in version control with visual diffs. Roll back any change, branch with confidence, and collaborate seamlessly.', color: 'from-purple-400 to-violet-500', }, { icon: Palette, title: 'Beautiful by Default', description: 'Every component follows design best practices. Responsive, accessible, and stunning on every device.', color: 'from-pink-400 to-rose-500', }, { icon: Database, title: 'Full-Stack Supabase', description: 'Integrated Supabase backend with auth, database, and storage. Your app is full-stack from the first prompt.', color: 'from-brand-400 to-indigo-500', }, { icon: Lock, title: 'Enterprise Security', description: 'SOC 2 compliant infrastructure. Your code and data are encrypted at rest and in transit. Always.', color: 'from-red-400 to-pink-500', }, { icon: Cpu, title: 'AI That Understands', description: 'Context-aware AI that remembers your project structure, patterns, and preferences across sessions.', color: 'from-teal-400 to-cyan-500', }, ]; export default function Features() { return (
Features

Everything you need to ship fast

From frontend to backend, design to deployment — Lovable handles the full stack so you can focus on what matters.

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

{feature.title}

{feature.description}

))}
); }