59 lines
2.1 KiB
TypeScript
59 lines
2.1 KiB
TypeScript
import { Container } from "@/components/container";
|
|
import { Heading } from "@/components/heading";
|
|
import { Subheading } from "@/components/subheading";
|
|
import { Card, CardHeader, CardTitle, CardDescription } from "@/components/ui/card";
|
|
import { Rocket, Shield, Zap, BarChart3 } from "lucide-react";
|
|
|
|
const features = [
|
|
{
|
|
title: "Performance Optimisée",
|
|
description: "Des outils conçus pour maximiser votre productivité au quotidien.",
|
|
icon: <Zap className="w-6 h-6 text-black" />,
|
|
},
|
|
{
|
|
title: "Sécurité Maximale",
|
|
description: "Vos données sont protégées par les standards les plus élevés du marché.",
|
|
icon: <Shield className="w-6 h-6 text-black" />,
|
|
},
|
|
{
|
|
title: "Croissance Rapide",
|
|
description: "Accélérez votre développement avec nos stratégies sur mesure.",
|
|
icon: <Rocket className="w-6 h-6 text-black" />,
|
|
},
|
|
{
|
|
title: "Analyses Précises",
|
|
description: "Prenez des décisions éclairées grâce à nos tableaux de bord détaillés.",
|
|
icon: <BarChart3 className="w-6 h-6 text-black" />,
|
|
},
|
|
];
|
|
|
|
export function Features() {
|
|
return (
|
|
<section className="py-20 bg-neutral-50">
|
|
<Container>
|
|
<div className="text-center mb-16">
|
|
<Heading>Pourquoi nous choisir ?</Heading>
|
|
<Subheading className="mt-4">
|
|
Nous offrons les meilleurs outils pour votre réussite.
|
|
</Subheading>
|
|
</div>
|
|
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
|
|
{features.map((feature, index) => (
|
|
<Card key={index} className="border-none shadow-sm hover:shadow-md transition-shadow">
|
|
<CardHeader>
|
|
<div className="mb-4 p-3 bg-white rounded-xl w-fit shadow-sm">
|
|
{feature.icon}
|
|
</div>
|
|
<CardTitle className="text-xl">{feature.title}</CardTitle>
|
|
<CardDescription className="text-neutral-600">
|
|
{feature.description}
|
|
</CardDescription>
|
|
</CardHeader>
|
|
</Card>
|
|
))}
|
|
</div>
|
|
</Container>
|
|
</section>
|
|
);
|
|
}
|