diff --git a/App/pelagia-portal/components/layout/mobile-bottom-nav.tsx b/App/pelagia-portal/components/layout/mobile-bottom-nav.tsx index d598dde..130b5d7 100644 --- a/App/pelagia-portal/components/layout/mobile-bottom-nav.tsx +++ b/App/pelagia-portal/components/layout/mobile-bottom-nav.tsx @@ -2,18 +2,20 @@ import Link from "next/link"; import { usePathname } from "next/navigation"; -import { CheckSquare, CreditCard, UserCircle } from "lucide-react"; +import { CheckSquare, CreditCard, UserCircle, LayoutDashboard } from "lucide-react"; import { cn } from "@/lib/utils"; import type { Role } from "@prisma/client"; const MANAGER_TABS = [ - { href: "/approvals", label: "Approvals", icon: CheckSquare }, - { href: "/profile", label: "Profile", icon: UserCircle }, + { href: "/dashboard", label: "Home", icon: LayoutDashboard }, + { href: "/approvals", label: "Approvals", icon: CheckSquare }, + { href: "/profile", label: "Profile", icon: UserCircle }, ]; const ACCOUNTS_TABS = [ - { href: "/payments", label: "Payments", icon: CreditCard }, - { href: "/profile", label: "Profile", icon: UserCircle }, + { href: "/dashboard", label: "Home", icon: LayoutDashboard }, + { href: "/payments", label: "Payments", icon: CreditCard }, + { href: "/profile", label: "Profile", icon: UserCircle }, ]; function tabsForRole(role: Role) {