import { Zap, Shield, Download, Globe } from “lucide-react”;
const features = [
{
icon: Zap,
title: “Lightning Fast”,
description: “Download videos in seconds with our optimized servers”,
},
{
icon: Shield,
title: “100% Free”,
description: “No hidden fees, no subscriptions, completely free forever”,
},
{
icon: Download,
title: “Multiple Formats”,
description: “Choose from various quality options and formats”,
},
{
icon: Globe,
title: “Multi-Platform”,
description: “Support for all major video platforms”,
},
];
export const Features = () => {
return (
{features.map((feature, index) => (
{feature.title}
{feature.description}
))}
);
};
