"use client"; import { usePathname } from "next/navigation"; import { useThemeStore } from "@/app/store/theme-store"; import Link from "next/link"; export const NavigationRail = () => { const pathname = usePathname(); const themeStore = useThemeStore(); return ( ); };