import { CheckCircle, Zap, Users, TrendingUp } from "lucide-react" const features = [ { icon: , title: "Task Management", description: "Organize and prioritize tasks with ease.", }, { icon: , title: "Real-time Collaboration", description: "Work together seamlessly in real-time.", }, { icon: , title: "Team Communication", description: "Stay connected with built-in messaging.", }, { icon: , title: "Analytics Dashboard", description: "Track progress and gain insights with powerful analytics.", }, ] export default function Features() { return (

Key Features

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

{feature.title}

{feature.description}

))}
) }