diff --git a/dashboard/src/app/application/page.tsx b/dashboard/src/app/application/page.tsx
new file mode 100644
index 0000000..eda2025
--- /dev/null
+++ b/dashboard/src/app/application/page.tsx
@@ -0,0 +1,3 @@
+export default async function ApplicationPage() {
+ return <>>;
+}
diff --git a/dashboard/src/app/layout.tsx b/dashboard/src/app/layout.tsx
index 9c43841..68326d3 100644
--- a/dashboard/src/app/layout.tsx
+++ b/dashboard/src/app/layout.tsx
@@ -5,6 +5,8 @@ import { cn } from '@/lib/utils';
import { Toaster } from '@/components/ui/sonner';
import React from 'react';
import { ThemeProvider } from 'next-themes';
+import { SidebarProvider, SidebarTrigger } from '@/components/ui/sidebar';
+import { AppSidebar } from '@/components/app-sidebar';
const inter = Inter({ subsets: ['latin'] });
@@ -53,8 +55,14 @@ export default function RootLayout({ children }: Readonly<{ children: React.Reac
enableSystem
disableTransitionOnChange
>
- {children}
-
+
+
+
+
+ {children}
+
+
+