mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-05-01 11:19:34 +00:00
Initial Commit
This commit is contained in:
commit
f3e2f01bd7
150 changed files with 13612 additions and 0 deletions
16
app/(platform)/(dashboard)/organization/layout.tsx
Normal file
16
app/(platform)/(dashboard)/organization/layout.tsx
Normal file
|
@ -0,0 +1,16 @@
|
|||
import { Sidebar } from "../_components/sidebar";
|
||||
|
||||
const OrganizationLayout = ({ children }: { children: React.ReactNode }) => {
|
||||
return (
|
||||
<main className="pt-20 md:pt-24 px-4 max-w-6xl 2xl:max-w-screen-xl mx-auto">
|
||||
<div className="flex gap-x-7">
|
||||
<div className="w-64 shrink-0 hidden md:block">
|
||||
<Sidebar />
|
||||
</div>
|
||||
{children}
|
||||
</div>
|
||||
</main>
|
||||
);
|
||||
};
|
||||
|
||||
export default OrganizationLayout;
|
Loading…
Add table
Add a link
Reference in a new issue