forked from github/plane
267cf75004
* chore: update profile and god mode routes * fix: profile activity loader * chore: update profile route in the change password page
15 lines
573 B
TypeScript
15 lines
573 B
TypeScript
// ui
|
|
import { Breadcrumbs } from "@plane/ui";
|
|
|
|
export const UserProfileHeader = () => (
|
|
<div className="relative flex w-full flex-shrink-0 flex-row z-10 h-[3.75rem] items-center justify-between gap-x-2 gap-y-4 border-b border-custom-border-200 bg-custom-sidebar-background-100 p-4">
|
|
<div className="flex items-center gap-2 flex-grow w-full whitespace-nowrap overflow-ellipsis">
|
|
<div>
|
|
<Breadcrumbs>
|
|
<Breadcrumbs.BreadcrumbItem type="text" label="Activity Overview" link="/profile" />
|
|
</Breadcrumbs>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|