"use client"
import Link from "next/link"
import { usePathname } from "next/navigation"
const navigation = [
{
name: "Runs",
href: "/runs",
icon: (
),
},
{
name: "Compare",
href: "/compare",
icon: (
),
},
{
name: "Leaderboard",
href: "/leaderboard",
icon: (
),
},
]
export function Sidebar() {
const pathname = usePathname()
return (
)
}