"use client";
import Link from "next/link";
import { usePathname } from "next/navigation";
import { CalendarIcon } from "lucide-react";
import { cn } from "@/lib/utils";
export function CalendarNav() {
const pathname = usePathname();
const isActive = pathname === "/calendar";
return (
Calendrier
);
}