feat: update sidebar nav, add open play toggle, mark courts 5-6 as open play

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Ivan
2026-03-02 03:55:13 +00:00
parent 0753edb275
commit a882c8698d
3 changed files with 28 additions and 5 deletions

View File

@@ -4,8 +4,8 @@ import Link from 'next/link';
import { usePathname } from 'next/navigation';
import {
LayoutDashboard,
Calendar,
Users,
Radio,
UserCircle,
CreditCard,
BarChart3,
Settings,
@@ -20,8 +20,8 @@ interface NavItem {
const navItems: NavItem[] = [
{ label: 'Dashboard', href: '/dashboard', icon: LayoutDashboard },
{ label: 'Bookings', href: '/bookings', icon: Calendar },
{ label: 'Players', href: '/clients', icon: Users },
{ label: 'Live Courts', href: '/live', icon: Radio },
{ label: 'Clients', href: '/clients', icon: UserCircle },
{ label: 'Memberships', href: '/memberships', icon: CreditCard },
{ label: 'Reports', href: '/reports', icon: BarChart3 },
{ label: 'Settings', href: '/settings', icon: Settings },