"use client" import { useState } from "react" import Link from "next/link" import { popularLeagues } from "@/lib/mock-data" import { cn } from "@/lib/utils" import { Button } from "@/components/ui/button" const sportCategories = [ { id: "football", name: "Football", icon: "⚽", count: 1412 }, { id: "tennis", name: "Tennis", icon: "🎾", count: 67 }, { id: "basketball", name: "Basketball", icon: "🏀", count: 255 }, { id: "ice-hockey", name: "Ice Hockey", icon: "🏒", count: 238 }, { id: "mma", name: "MMA", icon: "🥊", count: 51 }, { id: "handball", name: "Handball", icon: "🤾", count: 92 }, { id: "darts", name: "Darts", icon: "🎯", count: 25 }, { id: "snooker", name: "Snooker", icon: "🎱", count: 3 }, { id: "cricket", name: "Cricket", icon: "🏏", count: 42 }, { id: "dota2", name: "Dota 2", icon: "🎮", count: 2 }, { id: "rugby", name: "Rugby", icon: "🏉", count: 41 }, { id: "volleyball", name: "Volleyball", icon: "🏐", count: 69 }, ] export function SportsSidebar() { const [activeSport, setActiveSport] = useState("football") return ( ) }