"use client";
import Link from "next/link";
import { usePathname } from "next/navigation";
import { useTranslation } from "@/lib/i18n";
export default function BottomNav() {
const pathname = usePathname();
const { t } = useTranslation();
const NAV_ITEMS = [
{
href: "/tasks",
label: t("nav.tasks"),
icon: (
),
},
{
href: "/calendar",
label: t("nav.calendar"),
icon: (
),
},
{
href: "/projects",
label: t("nav.projects"),
icon: (
),
},
{
href: "/goals",
label: t("nav.goals"),
icon: (
),
},
{
href: "/chat",
label: t("nav.chat"),
icon: (
),
},
];
return (
);
}