'use client'
import Link from 'next/link'
import { usePathname } from 'next/navigation'
const NAV = [
{
href: '/new-run',
label: 'New Analysis',
tag: 'RUN',
icon: (
),
},
{
href: '/history',
label: 'Run History',
tag: 'LOG',
icon: (
),
},
{
href: '/settings',
label: 'Settings',
tag: 'CFG',
icon: (
),
},
]
export default function Sidebar() {
const path = usePathname()
return (
)
}