"use client"; import { motion } from "framer-motion"; import { Sparkles, Layers, BarChart3, Users, CheckCircle2, ShieldCheck, Workflow, LineChart, WorkflowIcon, } from "lucide-react"; import { Button } from "@/components/ui/button"; const FEATURES_DATA = [ { icon: Users, title: "Smart Candidate Management", description: "Track candidates effortlessly with pipeline stages, auto tagging & resume parsing.", }, { icon: Layers, title: "Unified ATS + CRM Platform", description: "Manage hiring, leads & clients under one powerful and connected workspace.", }, { icon: CheckCircle2, title: "Automated Workflows", description: "Reduce manual tasks with automated approvals, reminders & email triggers.", }, { icon: WorkflowIcon, title: "Task & Team Collaboration", description: "Assign tasks, manage roles, and collaborate with real-time updates.", }, { icon: ShieldCheck, title: "Role-Based Access", description: "Secure & compliant access controls to protect sensitive data.", }, { icon: BarChart3, title: "Analytics & Insights", description: "Get real-time dashboards for hiring performance and revenue growth.", }, ]; export default function FeaturesPage() { return (
{/* HERO */}
Powerful Features to Turbocharge Your{" "} Hiring & CRM

Everything you need to streamline recruitment, manage clients and scale your business — all in one platform.

{/* FEATURE GRID */}
{FEATURES_DATA.map((feature, i) => (

{feature.title}

{feature.description}

))}
{/* CTA STRIP */}
Experience The Future of Hiring & Client Management

Try Winixco now and transform the way your business grows.

); }