"use client";
import Link from "next/link";
import { usePathname } from "next/navigation";
const NAV_ITEMS = [
{
href: "/tasks",
label: "Ukoly",
icon: (
),
},
{
href: "/calendar",
label: "Kalendar",
icon: (
),
},
{
href: "/chat",
label: "Chat",
icon: (
),
},
{
href: "/settings",
label: "Nastaveni",
icon: (
),
},
];
export default function BottomNav() {
const pathname = usePathname();
return (
);
}