"use client"; import React, { useState } from "react"; import { motion } from "framer-motion"; import { Card, CardContent } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { Badge } from "@/components/ui/badge"; import { Check, Sparkles, Zap, Shield, Star, Clock, } from "lucide-react"; import { useRouter } from "next/navigation"; /* ------------------ DATA ------------------ */ const features = [ { text: "Unlimited Jobs & Candidates", highlight: true }, { text: "FREE HRMS & CRM (No extra cost)", highlight: true }, { text: "AI Resume Parsing" }, { text: "AI Resume Formatting & Standardization" }, { text: "AI JD Generator" }, { text: "AI Based Candidate Scoring & Ranking" }, { text: "AI Technical Assessments" }, { text: "AI Interview Insights & Notes" }, { text: "Geo-Location Enabled HRMS" }, { text: "Live Attendance with Real-Time Location" }, { text: "Recruiter & Team Performance Analytics" }, { text: "Client & Vendor CRM (Included)" }, { text: "PDPA, ISO 27001 & SOC 2 Ready" }, ]; const comparisonData = [ { feature: "AI Resume Parsing", winixco: "✔", zoho: "✔", freshteam: "✖", darwinbox: "✔", }, { feature: "AI Candidate Scoring", winixco: "✔", zoho: "✖", freshteam: "✖", darwinbox: "✔", }, { feature: "AI JD Generator", winixco: "✔", zoho: "✖", freshteam: "✖", darwinbox: "✔", }, { feature: "AI Technical Assessment", winixco: "✔", zoho: "✖", freshteam: "✖", darwinbox: "✔", }, { feature: "FREE HRMS", winixco: "✔", zoho: "✖", freshteam: "✖", darwinbox: "✔", }, { feature: "FREE CRM", winixco: "✔", zoho: "✖", freshteam: "✖", darwinbox: "✖", }, { feature: "Geo-Location HRMS", winixco: "✔", zoho: "✖", freshteam: "✖", darwinbox: "✔", }, { feature: "Starting Price", winixco: "₹1,499", zoho: "₹2,500+", freshteam: "₹2,000+", darwinbox: "Enterprise", }, ]; /* ------------------ HERO ------------------ */ const PricingHero = () => (
SPECIAL LAUNCH OFFER

Hire smarter. Track smarter.{" "} Manage everything {" "} from one platform.

One powerful ATS with{" "} FREE HRMS & CRM

); /* ------------------ PRICING CARD ------------------ */ const MainPricingCard = () => { const [billingCycle, setBillingCycle] = useState<"monthly" | "yearly">("monthly"); return (
ALL-IN-ONE PLAN

Winixco ATS

{/* Toggle */}
{/* Price */} {billingCycle === "monthly" ? ( <>
₹1,499

per user / month

) : ( <>
₹14,999

per user / year

)} {/* CTA */} {/* Features */}
{features.map((f, i) => (
{f.text}
))}
); }; /* ------------------ COMPARISON ------------------ */ const ComparisonTable = () => (

Compare with Others

{comparisonData.map((row, i) => ( ))}
Feature Winixco Zoho Freshteam Darwinbox
{row.feature} {row.winixco} {row.zoho} {row.freshteam} {row.darwinbox}
); /* ------------------ CTA ------------------ */ const CtaSection = () => { const router = useRouter(); return (

Need Bulk Pricing or a Demo?

Talk to our sales team for custom enterprise plans

); }; /* ------------------ MAIN ------------------ */ export default function PricingSection() { return (
); }