Aaron Heckmann 2025-05-23 03:42:04 -07:00 committed by GitHub
parent a3b9152a9b
commit f8ca1e46b1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
142 changed files with 92 additions and 16 deletions

View file

@ -1,23 +0,0 @@
"use client";
import { CommandPalette } from "@/components/command-palette";
import { AuthenticationWrapper } from "@/lib/wrappers";
// plane web components
import { WorkspaceAuthWrapper } from "@/plane-web/layouts/workspace-wrapper";
import { AppSidebar } from "./sidebar";
export default function WorkspaceLayout({ children }: { children: React.ReactNode }) {
return (
<AuthenticationWrapper>
<CommandPalette />
<WorkspaceAuthWrapper>
<div className="relative flex h-screen w-full overflow-hidden">
<AppSidebar />
<main className="relative flex h-full w-full flex-col overflow-hidden bg-custom-background-100">
{children}
</main>
</div>
</WorkspaceAuthWrapper>
</AuthenticationWrapper>
);
}