"use client"; import React, { } from "react"; import { motion } from "framer-motion"; import { Check, ArrowRight, PlayCircle, } from "lucide-react"; import { Button } from "@/components/ui/button"; import { home } from "@/services/Constants"; const Hero = () => { return (
{/* Animated Background Elements */}
✨ AI-Powered Recruitment Platform Hire Top Talent{" "} 10x Faster The world's most intelligent ATS that automates screening, scheduling, and hiring. Join 10,000+ companies who trust TalentFlow. No credit card required 14-day free trial
{/* Stats Section */} {home.stats.map((stat, index) => (
{stat.value}
{stat.label}
))}
); }; export default Hero