import React from 'react'; import { useNavigate } from 'react-router-dom'; import { Check, Mail, MessageSquare, ArrowRight, Shield, Zap, Smartphone, BarChart3, Globe, Receipt, Shirt, QrCode, Package, PieChart, Video, Play, CheckCircle2 } from 'lucide-react'; import Button from '../components/Button'; import { smoothScrollTo } from '../utils/smoothScroll'; const LandingPage = () => { const navigate = useNavigate(); const handlePlanSelect = (plan: string) => { navigate(`/checkout?plan=${plan}`); }; const pricingPlans = [ { id: "free_trial", name: "Try for Free", price: "₹0", duration: "1 Month", description: "Experience the full power of TallyBook POS for garments with zero commitment.", features: [ "Size & Color Management", "GST Invoicing", "Barcode Scanning", "ART Wise Tracking", "WhatsApp Bill Send" ], buttonText: "Try for Free", highlight: false, onClick: () => navigate('/signup') }, { id: "1_year", name: "Get Started", price: "₹799", duration: "1 Year", description: "Advanced inventory and marketing toolkit for your store.", features: [ "Everything in Free Trial", "WhatsApp Marketing Tools", "Cloud Data Backup", "Profit & Sales Reports", "Priority Support" ], buttonText: "Get Started", highlight: true, onClick: () => handlePlanSelect('1_year') }, { id: "3_year", name: "Best Value", price: "₹1499", duration: "3 Years", description: "The complete digital transformation for footwear & garment shops.", features: [ "Everything in Premium", "36 Months Validity", "VIP Onboarding", "Custom Bill Templates", "Account Manager" ], buttonText: "Best Value", highlight: false, onClick: () => handlePlanSelect('3_year') } ]; return (
{/* Navbar */} {/* Hero Section */}

Run Your Garment & Footwear Business Smarter, Faster & Error-Free

Advanced POS system for modern retailers — Billing, Size-Color stock, Barcode aur WhatsApp marketing ek hi software me.

{/* Key Features Section */}

Everything You Need to Grow

Specially built modules for Garment & Footwear retailers.

Fast POS Billing

Instant bill create karo aur print / WhatsApp par bhejo. GST invoices manually likhne ki zaroorat nahi.

Size & Color Management

Product ko size aur color wise manage karo (S, M, L, XL, etc.) aur dead stock se bacho.

Barcode Support

Barcode scan karke fast billing aur stock update. Human errors ko 0% pe laiye.

ART Wise Inventory

Har design (ART) ka alag tracking. Dekhiye kaun sa design sabse zyada bik raha hai.

Smart Reports

Color, Size, ART wise detailed reports. Data-driven faisle lijiye aur munafa badhaiye.

WhatsApp Integration

Bill aur marketing messages direct customer ko bhejo. Customer se rishta mazboot banaiye.

{/* Detailed Features Grid */}

    {['Fast billing with barcode', 'GST ready invoice', 'Customer mobile number', 'WhatsApp Bill Send'].map(item => (
  • ))}

    {['Size wise stock', 'Color wise stock', 'ART wise tracking', 'Low stock alert'].map(item => (
  • ))}

    {['Item wise sales', 'ART wise report', 'Size/Color report', 'Profit analysis'].map(item => (
  • ))}

    {['Broadcast festivals', 'Bulk promotions', 'Supplier invoices', 'Engagement tools'].map(item => (
  • ))}
{/* WhatsApp Marketing Highlight */}

Boost Sales with WhatsApp Marketing 🚀

{[ 'Customer ko direct offer bhejo', 'Festival sale broadcast karo', 'Repeat customers increase karo', 'New arrivals ka promotion karo' ].map(item => (
))}
{/* Pricing Section */}

Simple, Transparent Pricing

Invest in your store's growth today.

{pricingPlans.map((plan, idx) => (
{plan.highlight && (
Most Popular
)}

{plan.name}

{plan.price} / {plan.duration}

{plan.description}

    {plan.features.map((feature, fIdx) => (
  • {feature}
  • ))}
))}
{/* Direct Payment Section */}
Direct Activation

Pay Directly & Get Started Instantly

Scan the PhonePe QR to pay for your preferred plan. Once payment is done, share the screenshot on WhatsApp for instant account activation.

Safe & Verified UPI
Instant Support

PhonePe QR

Accepted Here

PhonePe QR

UPI: najiralilalani-1@okhdfcbank

NAJIRALI J EVA LALANI

{/* Support / Footer Section */}
); }; export default LandingPage;