"use client"; import { motion } from "framer-motion"; import { ArrowRight, PlayCircle, Users, UserCog, Briefcase, Check, } from "lucide-react"; import { Button } from "@/components/ui/button"; import { home } from "@/services/Constants"; const Hero = () => { return (
{/* Background grid + Java/Botticelli glow */}
{/* Top glow */} {/* Bottom glow */}
{/* Left: copy */}
{/* Badge */} All-in-one ATS • HRMS • CRM for modern teams {/* Title */} Hire faster with a{" "} clean ATS workflow {/* Subtext */} Winixco streamlines pipelines, interview scheduling, and employee operations—so your team can focus on decisions, not admin work. {/* CTAs */} {/* Trust line */} No credit card required 14-day free trial {/* Feature chips */}
{[ { icon: Users, title: "ATS", desc: "Pipeline + sourcing" }, { icon: UserCog, title: "HRMS", desc: "Onboarding + reviews" }, { icon: Briefcase, title: "CRM", desc: "Clients + pools" }, ].map((f, i) => (
{f.title}
{f.desc}
))}
{/* Right preview stays same, only accent changed */}
{/* Fake topbar */}{" "}
{" "}
{" "}
{" "} {" "} {" "} {" "}
{" "}
Winixco ATS
{" "}
{" "}
Today
{" "}
{" "} {/* Fake content */}{" "}
{" "}
{" "}
{" "}
Pipeline
{" "}
{" "} {["Applied", "Screening", "Interview", "Offer"].map( (t) => (
{" "} {t} {" "} +12 {" "}
), )}{" "}
{" "}
{" "}
{" "}
Upcoming interviews
{" "}
{" "} {[ { name: "A. Roy", role: "Frontend Dev", time: "11:00 AM", }, { name: "S. Das", role: "Sales Lead", time: "02:30 PM", }, { name: "K. Singh", role: "HR Ops", time: "05:00 PM" }, ].map((x) => (
{" "}
{" "}
{x.name}
{" "}
{x.role}
{" "}
{" "}
{" "} {x.time}{" "}
{" "}
))}{" "}
{" "}
{" "}
{" "} {/* Stats row from your constants */}{" "}
{" "} {home.stats.slice(0, 2).map((s, idx) => (
{" "}
{s.label}
{" "}
{s.value}
{" "}
{" "}
{" "}
{" "}
))}{" "}
{" "}
{/* Accent glow */}
); }; export default Hero;