/** * @file app/(app)/member/MemberHeader.tsx * @description Client component rendering the header section for the team members page. */ "use client"; import { GoBackButton } from "@/app/components/ui/buttons/GoBackButton"; import { UsersRound } from "lucide-react"; import { usePathname } from "next/navigation"; /** * Renders the members page header featuring title details, workspace subtitle, and an indicator icon. * * @returns {JSX.Element} The rendered members header component. */ export default function MemberHeader() { const pathname = usePathname(); const isRootPage = pathname === "/member"; return ( <>
Manage your team members and collaborate efficiently.