import { Link } from 'react-router-dom'; import { Card, CardContent } from '@/components/ui/card'; import { Store, CreditCard, Receipt, Package, Users, BarChart3, QrCode, ArrowRight } from 'lucide-react'; const EstablishmentsManagement = () => { const stats = { activeOrders: 24, dailyRevenue: 8450, inventory: 156, staff: 18 }; const sections = [ { title: 'POS Terminal', description: 'Complete point of sale system', icon: CreditCard, path: '/dashboard/establishments/pos', color: 'green' }, { title: 'Orders Management', description: 'Manage all orders and transactions', icon: Receipt, path: '/dashboard/establishments/orders', color: 'blue' }, { title: 'Inventory Control', description: 'Track stock and product management', icon: Package, path: '/dashboard/establishments/inventory', color: 'purple' }, { title: 'Staff Management', description: 'Manage your team and schedules', icon: Users, path: '/dashboard/establishments/staff', color: 'indigo' }, { title: 'Business List', description: 'View and manage all establishments', icon: Store, path: '/dashboard/establishments/businesses', color: 'orange' }, { title: 'Categories', description: 'Manage business categories', icon: QrCode, path: '/dashboard/establishments/categories', color: 'yellow' }, { title: 'Verification', description: 'Review pending verifications', icon: BarChart3, path: '/dashboard/establishments/verification', color: 'red' }, { title: 'Analytics', description: 'Business insights and reports', icon: BarChart3, path: '/dashboard/establishments/analytics', color: 'teal' } ]; return (

Establishments Management

Complete business management system

{/* Stats Overview */}

Active Orders

{stats.activeOrders}

In progress now

Daily Revenue

${stats.dailyRevenue.toLocaleString()}

+15% vs yesterday

Inventory Items

{stats.inventory}

Products tracked

Staff Members

{stats.staff}

Active employees

{/* Sections Grid */}

System Modules

{sections.map((section) => { const Icon = section.icon; return (

{section.title}

{section.description}

); })}
); }; export default EstablishmentsManagement;