first commit

This commit is contained in:
2025-12-02 14:42:40 +05:30
commit e87bdd45a1
66 changed files with 9380 additions and 0 deletions

View File

@@ -0,0 +1,63 @@
"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">
Everything You Need to{" "}
<span className="bg-gradient-to-r from-purple-600 to-pink-600 bg-clip-text text-transparent">
Hire Smarter
</span>
</h2>
<p className="text-xl text-gray-600 max-w-3xl mx-auto">
Our comprehensive ATS platform combines cutting-edge AI with
intuitive design to revolutionize your recruitment process.
</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