"use client"
import Link from "next/link"
import { usePathname } from "next/navigation"
import { cn } from "@/lib/utils"
const bottomNavItems = [
{
href: "/",
label: "Home",
icon: (active: boolean) => (
),
},
{
href: "/sports",
label: "Sports",
icon: (active: boolean) => (
),
},
{
href: "/betslip",
label: "Betslip",
icon: (active: boolean) => (
),
},
{
href: "/games",
label: "Casino",
icon: (active: boolean) => (
),
},
{
href: "/support",
label: "Help",
icon: (active: boolean) => (
),
},
]
export function MobileBottomNav() {
const pathname = usePathname()
return (
)
}