import Link from "next/link" import { usePathname } from "next/navigation" import { cn } from "@/lib/utils" const navItems = [ { href: "/", label: "Sport Home" }, { href: "/live", label: "Live" }, ] export function SiteHeader() { const pathname = usePathname() return (
Harifsport
) }