'use client' import { useState } from 'react' import { motion } from 'framer-motion' import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card' import { Badge } from '@/components/ui/badge' import { Button } from '@/components/ui/button' import { Clock, MapPin, Users, TrendingUp, Shield, Star, CheckCircle, Calendar, DollarSign, Award, Target, Zap, Heart, Briefcase, Home, Phone, Mail, FileText, UserPlus } from 'lucide-react' import PageHero from '@/components/sections/PageHero' import PartTimeRegistrationForm from '@/components/forms/PartTimeRegistrationForm' export default function PartTimePage() { const [showRegistrationModal, setShowRegistrationModal] = useState(false) const jobBenefits = [ { icon: DollarSign, title: "Fixed Monthly Salary", description: "Guaranteed ₹10,000 monthly salary regardless of sales" }, { icon: TrendingUp, title: "1% Sales Incentive", description: "Earn 1% commission on every successful sale you make" }, { icon: Clock, title: "Flexible Hours", description: "Work according to your available time schedule" }, { icon: Award, title: "Sales Training", description: "Free product knowledge and sales technique training" } ] const jobRole = { id: 1, icon: Target, title: "Sales Executive", description: "Sell premium Kashmiri rice products to customers", requirements: [ "Good communication skills", "Basic smartphone knowledge", "3-4 hours daily availability", "Willingness to learn" ], salary: "₹10,000/month", incentive: "1% commission on sales", totalEarnings: "₹10,000 + Sales Commission", color: "from-green-500 to-green-600" } const workProcess = [ { step: 1, icon: UserPlus, title: "Apply Online", description: "Fill out our simple registration form" }, { step: 2, icon: Phone, title: "Interview Call", description: "Quick phone interview to assess your skills" }, { step: 3, icon: Award, title: "Training Provided", description: "Free online training and skill development" }, { step: 4, icon: Zap, title: "Start Working", description: "Begin your part-time job and earn money" } ] return (
setShowRegistrationModal(true), variant: "primary" }, ]} /> {/* Job Benefits */}
Why Work With Us? Guaranteed salary + unlimited earning potential
{jobBenefits.map((benefit, index) => (

{benefit.title}

{benefit.description}

))}
{/* Available Job Roles */}
Position Details Everything you need to know about the role
{jobRole.title} {jobRole.totalEarnings}

{jobRole.description}

Base Salary: {jobRole.salary}
Commission: {jobRole.incentive}

Requirements:

    {jobRole.requirements.map((req, reqIndex) => (
  • {req}
  • ))}
{/* How It Works */}
How To Get Started Simple 4-step process to start earning
{workProcess.map((process, index) => (
{process.step}

{process.title}

{process.description}

))}
{/* Success Stories */}
What Our Team Says Real experiences from our sales team
{[ { name: "Priya Sharma", role: "Sales Executive", earnings: "₹13,500/month", story: "The guaranteed salary of ₹10,000 plus commission gives me financial security. Great training and support!", rating: 5 }, { name: "Rahul Gupta", role: "Sales Executive", earnings: "₹15,200/month", story: "I love the 1% commission structure. The more I sell, the more I earn. Management is very supportive.", rating: 5 }, { name: "Anjali Verma", role: "Sales Executive", earnings: "₹12,800/month", story: "Perfect for someone who wants stable income with growth potential. Training helped me develop sales skills.", rating: 5 } ].map((story, index) => (
{[...Array(story.rating)].map((_, i) => ( ))}

"{story.story}"

{story.name}

{story.role}

Earning: {story.earnings}
))}
{/* Part-Time Registration Modal */} setShowRegistrationModal(false)} />
) }