import { Download, Heart, Library, Smartphone, Video } from 'lucide-react'; const Features = () => { const features = [ { icon: Video, title: 'No installation needed', description: 'Easy video editor with editable text, background, memes, built into the web.', gradient: 'bg-gradient-to-br from-transparent to-blue-500/5 dark:to-blue-400/10 hover:bg-gradient-to-tl', order: 3, }, { icon: Heart, title: 'Built-in meme & backgrounds', description: 'Access meme and background with our editor without paying a cent.', gradient: 'bg-gradient-to-br from-transparent to-pink-500/5 dark:to-pink-400/10 hover:bg-gradient-to-tl', order: 1, }, { icon: Download, title: 'Export in minutes', description: 'Download high-quality 720p MP4 videos optimized for TikTok, Youtube Shorts, Instagram Reels, and more.', gradient: 'bg-gradient-to-br from-transparent to-green-500/5 dark:to-green-400/10 hover:bg-gradient-to-tl', order: 2, }, { icon: Smartphone, title: 'Works Everywhere', description: 'Create on desktop, tablet, or mobile! Potato devices not recommended though.', gradient: 'bg-gradient-to-br from-transparent to-purple-500/5 dark:to-purple-400/10 hover:bg-gradient-to-tl', order: 4, }, { icon: Library, title: 'Meme Library Updates', description: 'Soon we will be adding more memes and backgrounds to the library!', comingSoon: true, gradient: 'bg-gradient-to-br from-transparent to-orange-500/5 dark:to-orange-400/10 hover:bg-gradient-to-tl', order: 5, }, ]; return (
{features .sort((a, b) => a.order - b.order) .map((feature, index) => (
{feature.comingSoon && (
Coming Soon!
)}

{feature.title}

{feature.description}

))}
); }; export default Features;