diff --git a/src/app/(main)/agency/[agencyId]/layout.tsx b/src/app/(main)/agency/[agencyId]/layout.tsx
index 3a8eaba..4077d94 100644
--- a/src/app/(main)/agency/[agencyId]/layout.tsx
+++ b/src/app/(main)/agency/[agencyId]/layout.tsx
@@ -40,7 +40,7 @@ const layout = async ({ children, params }: Props) => {
type="agency"
/>
-
+ {children}
)
diff --git a/src/components/sidebar/menu-options.tsx b/src/components/sidebar/menu-options.tsx
index 5b4560e..2fe5f09 100644
--- a/src/components/sidebar/menu-options.tsx
+++ b/src/components/sidebar/menu-options.tsx
@@ -8,6 +8,10 @@ import {
SubAccountSidebarOption,
} from '@prisma/client'
import { useEffect, useMemo, useState } from 'react'
+import { Sheet, SheetContent, SheetTrigger } from '../ui/sheet'
+import { Button } from '../ui/button'
+import { Menu } from 'lucide-react'
+import clsx from 'clsx'
type Props = {
@@ -44,7 +48,36 @@ const MenuOptions = ({
if (!isMounted) return
return (
- MenuOptions
+
+
+
+
+
+
+
+
+
)
}
export default MenuOptions;
\ No newline at end of file