23 lines
740 B
TypeScript
23 lines
740 B
TypeScript
/**
|
|
* Copyright (c) 2023-present Plane Software, Inc. and contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
* See the LICENSE file for details.
|
|
*/
|
|
|
|
import { useNodeDCBrandLinkUrl } from "@/hooks/use-nodedc-brand-link-url";
|
|
|
|
export function AuthHeader() {
|
|
const logoLinkUrl = useNodeDCBrandLinkUrl();
|
|
|
|
return (
|
|
<div className="sticky top-0 flex w-full flex-shrink-0 items-center justify-between gap-6">
|
|
<a href={logoLinkUrl}>
|
|
<span className="tracking-normal text-16 font-semibold text-primary">NODE.DC</span>
|
|
</a>
|
|
<span className="rounded-full bg-white/6 px-3 py-1 text-11 font-medium text-secondary">
|
|
Глобальное администрирование
|
|
</span>
|
|
</div>
|
|
);
|
|
}
|