mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-06-28 04:06:54 +00:00
45 lines
1.4 KiB
TypeScript
45 lines
1.4 KiB
TypeScript
import { CheckCircle, Zap, Users, TrendingUp } from "lucide-react"
|
|
|
|
const features = [
|
|
{
|
|
icon: <CheckCircle className="h-8 w-8 text-primary" />,
|
|
title: "Task Management",
|
|
description: "Organize and prioritize tasks with ease.",
|
|
},
|
|
{
|
|
icon: <Zap className="h-8 w-8 text-primary" />,
|
|
title: "Real-time Collaboration",
|
|
description: "Work together seamlessly in real-time.",
|
|
},
|
|
{
|
|
icon: <Users className="h-8 w-8 text-primary" />,
|
|
title: "Team Communication",
|
|
description: "Stay connected with built-in messaging.",
|
|
},
|
|
{
|
|
icon: <TrendingUp className="h-8 w-8 text-primary" />,
|
|
title: "Analytics Dashboard",
|
|
description: "Track progress and gain insights with powerful analytics.",
|
|
},
|
|
]
|
|
|
|
export default function Features() {
|
|
return (
|
|
<section id="features" className="py-20 bg-gray-50">
|
|
<div className="container mx-auto">
|
|
<h2 className="text-3xl font-bold text-center mb-12">Key Features</h2>
|
|
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
|
|
{features.map((feature, index) => (
|
|
<div key={index} className="bg-white p-6 rounded-lg shadow-md">
|
|
<div className="mb-4">{feature.icon}</div>
|
|
<h3 className="text-xl font-semibold mb-2">{feature.title}</h3>
|
|
<p className="text-gray-600">{feature.description}</p>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
)
|
|
}
|
|
|