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 and background libraries without paying a cent', }, { icon: Video, title: 'Web-powered Video Editor', description: 'Easy video editor with editable text, background, memes, built into the web. No additional software required!', }, { icon: Download, title: 'Export in minutes', description: 'Download high-quality 720p MP4 videos optimized for TikTok, Youtube Shorts, Instagram Reels, and more', }, { icon: Smartphone, title: 'Works Everywhere', description: 'Create on desktop, tablet, or mobile! Potato devices not recommended though.', }, { icon: Library, title: 'Meme Library Updates', description: 'Soon we will be adding more memes and backgrounds to the library!', 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 && (
Coming Soon
)}

{feature.title}

{feature.description}

))}
); }; export default Features;