"use client";
import { Button } from "@/components/ui/button";
import { Card, CardContent } from "@/components/ui/card";
import { Badge } from "@/components/ui/badge";
import { Check } from "lucide-react";
export default function PricingSection() {
const features = [
"Unlimited Jobs & Candidates",
"FREE HRMS & CRM",
"AI Resume Parsing",
"AI JD Generator",
"AI Candidate Scoring",
"AI Technical Assessments",
"Geo-Location Enabled HRMS",
"Live Attendance with Location",
"Recruiter Performance Analytics",
"Client & Vendor CRM",
];
return (
{/* Heading */}
Hire smarter. Track smarter. Manage everything from one platform.
One powerful ATS with{" "}
FREE HRMS & CRM
{" "}
, AI automation and real-time geo-location tracking
{/* Pricing Card */}
ALL-IN-ONE PLAN • HRMS & CRM FREE
Winixco ATS – One Plan
₹1,999
per user / month
₹19,990 per user / year (2 months FREE)
{/* Features */}
{features.map((item, index) => (
{item}
))}
{/* Sections */}
{/* Simple Pricing */}
Simple Per-Seat Pricing
Each recruiter or HR team member requires one seat. All seats include full access to ATS, HRMS, CRM and AI features.
- 1 Seat = 1 User
- No separate charges
- All AI features included
- Scale anytime
{/* Bulk Pricing */}
Bulk Team Pricing
{[
{
title: "Startup Team (5-20 seats)",
price: "₹1,899 / seat / month",
},
{
title: "Growth Team (21-50 seats)",
price: "₹1,799 / seat / month",
},
{
title: "Enterprise (50+ seats)",
price: "Custom pricing",
},
].map((plan, i) => (
{plan.title}
{plan.price}
))}
{/* ROI Section */}
Recruitment ROI Example
10 recruiters using Winixco can save ~400 hours/month through AI automation resulting in productivity worth ₹4L+ per month.
{/* Footer CTA */}
Need bulk pricing or demo?
{/* Sticky CTA */}
Start 30-Day Free Trial – ₹67/day per recruiter
);
}