"use client"; import { motion } from "framer-motion"; import { Button } from "@/components/ui/button"; export default function HeroSection() { return (
{/* LEFT CONTENT */}

Hire Smarter with AI-Powered Recruitment Software

All-in-one ATS, HRMS, and Recruitment CRM platform designed for modern hiring teams

{/* RIGHT CARD */}

Recruitment Pipeline

); } function StatCard({ title, value }: { title: string; value: string }) { return (

{title}

{value}

); }