import { Bot, Download, Heart, Library, Smartphone, Video } from 'lucide-react'; const Features = () => { const features = [ { icon: Heart, title: 'Make video memes for free', description: 'Access 200+ meme templates and backgrounds without paying a cent', }, { icon: Video, title: 'Easy Video Editor', description: 'Simple video editor with draggable text, background, memes and real-time preview', }, { icon: Download, title: 'Instant Export', description: 'Download high-quality MP4 videos optimized for TikTok, Youtube Shorts, Instagram Reels, and more', }, { icon: Smartphone, title: 'Works Everywhere', description: 'Create on desktop, tablet, or mobile with responsive design', }, { icon: Library, title: 'Library Updates', description: 'Fresh viral memes and backgrounds updated regularly', comingSoon: true, }, { icon: Bot, title: 'AI Caption & Backgrounds', description: 'Smart caption and background generation coming soon', comingSoon: true, }, ]; return (

Everything you need to create viral memes

Simple, powerful tools that help creators make engaging content

{features.map((feature, index) => (
{feature.comingSoon && (
Soon
)}

{feature.title}

{feature.description}

))}
); }; export default Features;