"use client"; import { usePathname, useRouter } from 'next/navigation'; import { Button } from '../src/components/ui/button'; import Image from 'next/image'; const examples = [ { name: "Chat", href: "/chat" }, { name: "Dashboard", href: "/dashboard" }, { name: "Mail", href: "/mail" }, { name: "Tree", href: "/tree" }, { name: "Editor", href: "/editor" }, { name: "Tables", href: "/table" }, { name: "Meet", href: "/meet" }, { name: "Videos", href: "/videos" }, { name: "Music", href: "/music" }, { name: "Templates", href: "/templates" }, { name: "Settings", href: "/settings" }, ]; export function Nav() { const pathname = usePathname(); const router = useRouter(); return (