Implement Hotel Management module

This commit is contained in:
gpt-engineer-app[bot]
2025-10-10 23:13:59 +00:00
parent 312ad381ec
commit e167225412
7 changed files with 1585 additions and 1 deletions

View File

@@ -36,7 +36,8 @@ import {
Eye,
Megaphone,
ChevronDown,
ChevronRight
ChevronRight,
Hotel
} from 'lucide-react';
const DashboardLayout = ({ children }: { children: React.ReactNode }) => {
@@ -59,6 +60,7 @@ const DashboardLayout = ({ children }: { children: React.ReactNode }) => {
{ icon: Home, label: 'Dashboard', path: '/dashboard' },
{ icon: Settings, label: 'Admin Panel', path: '/dashboard/admin' },
{ icon: Plus, label: 'Channel Manager', path: '/dashboard/channel-manager' },
{ icon: Hotel, label: 'Hotel Management', path: '/dashboard/hotel-management' },
{ icon: Wallet, label: 'Wallet', path: '/dashboard/wallet' },
{ icon: MessageSquare, label: 'Message', path: '/dashboard/messages', badge: '2' },
];