64 lines
2.4 KiB
TypeScript
64 lines
2.4 KiB
TypeScript
"use client";
|
|
import React from "react";
|
|
import { motion } from "framer-motion";
|
|
import { Card, CardContent } from "@/components/ui/card";
|
|
import AnimatedSection from "./Animated";
|
|
import { home } from "@/services/Constants";
|
|
|
|
// Features Section
|
|
const Features = () => {
|
|
return (
|
|
<section
|
|
id="features"
|
|
className="py-24 bg-gradient-to-b from-white to-purple-50"
|
|
>
|
|
<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">
|
|
POWERFUL FEATURES
|
|
</span>
|
|
<h2 className="text-4xl md:text-5xl font-bold mb-6">
|
|
All-in-One ATS, HRMS & CRP{" "}
|
|
<span className="bg-gradient-to-r from-purple-600 to-pink-600 bg-clip-text text-transparent">
|
|
Solutions
|
|
</span>
|
|
</h2>
|
|
<p className="text-xl text-gray-600 max-w-3xl mx-auto">
|
|
Explore features across all our products designed to scale your
|
|
hiring success.
|
|
</p>
|
|
</AnimatedSection>
|
|
|
|
<div className="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
|
|
{home.features.map((feature, index) => (
|
|
<AnimatedSection key={index}>
|
|
<motion.div
|
|
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">
|
|
<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`}
|
|
>
|
|
<div className="text-white">{feature.icon}</div>
|
|
</div>
|
|
<h3 className="text-xl font-bold mb-3 text-gray-800">
|
|
{feature.title}
|
|
</h3>
|
|
<p className="text-gray-600 leading-relaxed">
|
|
{feature.description}
|
|
</p>
|
|
</CardContent>
|
|
</Card>
|
|
</motion.div>
|
|
</AnimatedSection>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
);
|
|
};
|
|
|
|
export default Features;
|