import { Rocket, Shield, Zap, Code } from "lucide-react"; import { Card, CardContent } from "../ui/card"; const features = [ { icon: Rocket, title: "Deploy in Seconds", description: "One-click deployment to Vercel with automatic CI/CD and preview deployments.", }, { icon: Shield, title: "Production Ready", description: "Built with best practices, TypeScript, and comprehensive error handling.", }, { icon: Zap, title: "Blazing Fast", description: "Optimized for performance with React Server Components and edge runtime.", }, { icon: Code, title: "Developer Experience", description: "Hot reload, TypeScript support, and modern tooling for rapid development.", }, ]; export function FeaturesSection() { return (

Everything you need to ship fast

Pre-configured with the best tools and practices to help you build production-ready applications.

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

{feature.title}

{feature.description}

))}
); }