"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { cn } from "@/lib/utils"; const tabs = [ { label: "Dashboard", href: "/" }, { label: "Infrastructure", href: "/infrastructure" }, { label: "Media", href: "/media" }, { label: "Automations", href: "/automations" }, { label: "Expenses", href: "/expenses" }, ]; export function Nav() { const pathname = usePathname(); const today = new Date().toLocaleDateString("en-US", { weekday: "long", year: "numeric", month: "long", day: "numeric", }); return ( ); }