import React, { useState } from 'react';
import { ChevronLeft, ChevronRight, Lock, Zap, TrendingUp, Database, RefreshCw, DollarSign, Rocket, Award } from 'lucide-react';
const PresentationSlide = () => {
const [currentSlide, setCurrentSlide] = useState(0);
const slides = [
{
title: "Stop the Leak: Reclaim Lost Profit",
icon: ,
content: (
₹15-20 Crore
Lost annually due to attendance fraud & inefficiencies
Buddy Punching
Ghost hours paid
Time Theft
Inflated work hours
Manual Errors
Costly mistakes
It's time to plug the leak.
),
notes: "In pharma, precision and compliance are everything. But outdated attendance systems are quietly draining profits—₹15–20 crore annually across large operations."
},
{
title: "Introducing QuickHR: The Smart Solution",
icon: ,
content: (
QuickHR
AI-Powered Attendance System
🔒
Tamper-Proof
Biometric verification
👋
Touchless
Hygienic & safe
⚡
Seamless
3-second clock-in
No cards. No passwords. Just your face.
),
notes: "QuickHR is a smart, AI-based attendance system. Employees clock in with just their face—no cards to forget, no passwords to share, and no room for manipulation."
},
{
title: "AI-Powered Fraud Prevention",
icon: ,
content: (
99.7% Accuracy
Only the right person clocks in—every time
❌ BLOCKS
• Buddy Punching
• Time Theft
• Ghost Entries
• Credential Sharing
✓ ENSURES
• Full Audit Trail
• Tamper-Proof Logs
• Regulatory Compliance
• Court-Admissible Data
🛡️ Perfect for FDA Audits & Compliance Checks
),
notes: "Facial recognition ensures only the right person can clock in. It blocks buddy punching, time theft, and ghost entries—critical in regulated pharma environments."
},
{
title: "Automated Real-Time Overtime Calculations",
icon: ,
content: (
❌ Before: Manual
📊 3-5 days/month reconciling
❌ Human errors & disputes
📝 Spreadsheet chaos
⚠️ Audit vulnerabilities
💸 Over/underpayments
✓ After: QuickHR
⚡ Real-time calculations
✓ Zero manual errors
🔄 Automatic rule application
📋 Audit-ready reports
💰 Accurate payroll
Save 60+ Hours/Month
Free your HR team for strategic work, not data cleanup
),
notes: "QuickHR calculates overtime in real time. No spreadsheets, no disputes. Fully auditable—perfect for compliance and labor law adherence."
},
{
title: "Real-Time Data & Visualization",
icon: ,
content: (
Act proactively on attendance issues—not reactively weeks later
Emergency Roll Call
Instant
Compliance Reports
One Click
),
notes: "Management gets real-time visibility—who's on time, who's late, who's working overtime. Act instantly, not after the fact."
},
{
title: "Seamless Integration with PACE",
icon: ,
content: (
No Disruption. No Retraining.
QuickHR works WITH your existing PACE system
📱
QuickHR Device
Biometric Clock-in
→
📊
HR Reports
Excel/CSV Ready
→
💼
PACE System
Your Workflow
✓ Zero Downtime
✓ No Workflow Change
Better data into your existing system—that's it.
),
notes: "QuickHR integrates directly with PACE. No need to change workflows. We provide clean, HR-ready reports in your preferred format."
},
{
title: "The Financial Impact: Proven ROI",
icon: ,
content: (
₹20 Crore
Annual Savings Potential
Fraud Elimination
₹8-12 Cr
5-10% labor cost recovery
OT Accuracy
₹3-5 Cr
No overpayments/disputes
Admin Efficiency
₹2-3 Cr
78% workload reduction
Payback Period
8-12 Months
💰
Backed by case studies and industry testimonials
),
notes: "Across industries, QuickHR has delivered up to ₹20 crore in annual savings and cut admin workload by 78%. We have the data to prove it."
},
{
title: "Your Next Step: Pilot Deployment",
icon: ,
content: (
Start Your Pilot Today
Validate ROI in weeks, not months
1
Choose Location
One facility to start
2
90-Day Trial
Parallel to existing system
3
Scale Fast
Roll out to all locations
What We'll Measure:
✓ Fraud reduction percentage
✓ Admin time saved
✓ Overtime accuracy improvement
✓ Employee satisfaction
),
notes: "Start with one location. Validate ROI. Scale fast. You'll see the impact in weeks, and we'll help you scale across locations."
},
{
title: "Why Choose Us",
icon: ,
content: (
Your Trusted Partner
Not just tech—a complete partnership
🏆
12 Years
Of expertise transforming HR operations
🤝
Industry Leaders
Trusted by top manufacturers & pharma
🤖
AI Innovation
Cutting-edge facial recognition tech
🛠️
End-to-End Support
24/7 tech support & account management
You need a partner who understands pharma.
That's us. 🚀
),
notes: "We've been transforming HR for over a decade. Our solutions are trusted by leaders across industries. With QuickHR, you're gaining a partner."
}
];
const nextSlide = () => {
setCurrentSlide((prev) => (prev + 1) % slides.length);
};
const prevSlide = () => {
setCurrentSlide((prev) => (prev - 1 + slides.length) % slides.length);
};
const goToSlide = (index) => {
setCurrentSlide(index);
};
return (