home page colour changed
This commit is contained in:
@@ -10,20 +10,22 @@ const Features = () => {
|
||||
return (
|
||||
<section
|
||||
id="features"
|
||||
className="py-24 bg-gradient-to-b from-white to-purple-50"
|
||||
className="py-24 bg-gradient-to-b from-[#c3dbe0]/40 to-white"
|
||||
>
|
||||
<div className="max-w-7xl mx-auto px-4">
|
||||
<AnimatedSection className="text-center mb-16">
|
||||
<span className="inline-block px-4 py-2 bg-purple-100 text-purple-700 rounded-full text-sm font-semibold mb-4">
|
||||
<span className="inline-block px-4 py-2 bg-[#13afdc]/10 text-[#13afdc] rounded-full text-sm font-semibold mb-4">
|
||||
POWERFUL FEATURES
|
||||
</span>
|
||||
<h2 className="text-4xl md:text-5xl font-bold mb-6">
|
||||
|
||||
<h2 className="text-4xl md:text-5xl font-bold mb-6 text-[#0d0d0d]">
|
||||
All-in-One ATS, HRMS & CRP{" "}
|
||||
<span className="bg-gradient-to-r from-purple-600 to-pink-600 bg-clip-text text-transparent">
|
||||
<span className="bg-gradient-to-r from-[#13afdc] to-[#13afdc] bg-clip-text text-transparent">
|
||||
Solutions
|
||||
</span>
|
||||
</h2>
|
||||
<p className="text-xl text-gray-600 max-w-3xl mx-auto">
|
||||
|
||||
<p className="text-xl text-[#7c7a7c] max-w-3xl mx-auto">
|
||||
Explore features across all our products designed to scale your
|
||||
hiring success.
|
||||
</p>
|
||||
@@ -36,17 +38,28 @@ const Features = () => {
|
||||
whileHover={{ y: -8, scale: 1.02 }}
|
||||
className="h-full"
|
||||
>
|
||||
<Card className="h-full border-0 shadow-xl hover:shadow-2xl transition-all duration-300 overflow-hidden group">
|
||||
<Card className="h-full bg-white border border-[#c3dbe0] shadow-lg hover:shadow-xl transition-all duration-300 overflow-hidden group">
|
||||
<CardContent className="p-8">
|
||||
<div
|
||||
className={`w-14 h-14 rounded-xl bg-gradient-to-br ${feature.color} flex items-center justify-center mb-6 group-hover:scale-110 transition-transform`}
|
||||
className="
|
||||
w-14 h-14 rounded-xl
|
||||
bg-gradient-to-br from-[#13afdc] to-[#c3dbe0]
|
||||
flex items-center justify-center
|
||||
mb-6
|
||||
group-hover:scale-110
|
||||
transition-transform
|
||||
"
|
||||
>
|
||||
<div className="text-white">{feature.icon}</div>
|
||||
<div className="text-white">
|
||||
{feature.icon}
|
||||
</div>
|
||||
</div>
|
||||
<h3 className="text-xl font-bold mb-3 text-gray-800">
|
||||
|
||||
<h3 className="text-xl font-bold mb-3 text-[#0d0d0d]">
|
||||
{feature.title}
|
||||
</h3>
|
||||
<p className="text-gray-600 leading-relaxed">
|
||||
|
||||
<p className="text-[#7c7a7c] leading-relaxed">
|
||||
{feature.description}
|
||||
</p>
|
||||
</CardContent>
|
||||
|
||||
Reference in New Issue
Block a user