mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
05de4d83f3
* chore: header refactor. * fix: core imports * chore: refactor profile activity header and fix all other header imports. * fix: import fixes * chore: header refactor. * fix: app dir header reimplementation * fix: removing parllel headers * fix: adding route groups to handle pages * fix: disabling sentry for temp * chore: update default exports in layouts & headers for consistency. * fix: bugfixes * fix: build errors --------- Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
29 lines
723 B
TypeScript
29 lines
723 B
TypeScript
"use client";
|
|
|
|
import { ReactNode } from "react";
|
|
// components
|
|
import { SidebarHamburgerToggle } from "@/components/core";
|
|
|
|
export interface AppHeaderProps {
|
|
header: ReactNode;
|
|
mobileHeader?: ReactNode;
|
|
}
|
|
|
|
export const AppHeader = (props: AppHeaderProps) => {
|
|
const { header, mobileHeader } = props;
|
|
|
|
return (
|
|
<>
|
|
<div className="z-[15]">
|
|
<div className="z-10 flex w-full items-center border-b border-custom-border-200">
|
|
<div className="block bg-custom-sidebar-background-100 py-4 pl-5 md:hidden">
|
|
<SidebarHamburgerToggle />
|
|
</div>
|
|
<div className="w-full">{header}</div>
|
|
</div>
|
|
{mobileHeader && mobileHeader}
|
|
</div>
|
|
</>
|
|
);
|
|
};
|