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>
37 lines
1.2 KiB
TypeScript
37 lines
1.2 KiB
TypeScript
"use client";
|
|
|
|
import { ReactNode } from "react";
|
|
// components
|
|
import { AppHeader, ContentWrapper } from "@/components/core";
|
|
// local components
|
|
import { WorkspaceSettingHeader } from "./header";
|
|
import { MobileWorkspaceSettingsTabs } from "./mobile-header-tabs";
|
|
import { WorkspaceSettingsSidebar } from "./sidebar";
|
|
|
|
export interface IWorkspaceSettingLayout {
|
|
children: ReactNode;
|
|
}
|
|
|
|
export default function WorkspaceSettingLayout(props: IWorkspaceSettingLayout) {
|
|
const { children } = props;
|
|
|
|
return (
|
|
<>
|
|
<AppHeader header={<WorkspaceSettingHeader />} />
|
|
<ContentWrapper>
|
|
<div className="inset-y-0 z-20 flex h-full w-full gap-2">
|
|
<div className="w-80 flex-shrink-0 overflow-y-hidden pt-8 sm:hidden hidden md:block lg:block">
|
|
<WorkspaceSettingsSidebar />
|
|
</div>
|
|
<div className="flex flex-col relative w-full overflow-hidden">
|
|
<MobileWorkspaceSettingsTabs />
|
|
<div className="w-full pl-4 md:pl-0 md:py-8 py-2 overflow-x-hidden overflow-y-scroll vertical-scrollbar scrollbar-md">
|
|
{children}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</ContentWrapper>
|
|
</>
|
|
);
|
|
}
|