"use client"; import { usePathname } from "next/navigation"; import Link from "next/link"; import { useAuth } from "@/lib/auth/auth-context"; import { LogoutButton } from "@/components/auth/LogoutButton"; export function Navigation() { const pathname = usePathname(); const { user } = useAuth(); const navItems = [ { href: "/", label: "Dashboard" }, { href: "/tasks", label: "Tasks" }, { href: "/calendar", label: "Calendar" }, ]; return ( ); }