"use client"; import Image from "next/image"; import Link from "next/link"; import { usePathname } from "next/navigation"; import type { AuthState } from "@/lib/auth/session"; import type { NavProfile } from "@/lib/profile/service"; import { AccountMenu } from "@/components/navigation/account-menu"; import { isActivePath, primaryNavItems, shouldUseBottomNav, } from "@/components/navigation/navigation-config"; import { ThemeMenu } from "@/components/navigation/theme-menu"; import { cn } from "@/lib/utils"; type TopNavProps = { authState: AuthState; navProfile: NavProfile | null; }; export function TopNav({ authState, navProfile }: TopNavProps) { const pathname = usePathname(); const useCompactBottomNav = shouldUseBottomNav(pathname); return (
Inspannings Monitor icoon
Inspannings Monitor Wellness-first dagflow
); }