We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b16498 commit 853e15fCopy full SHA for 853e15f
apps/dashboard/app/(main)/layout.tsx
@@ -1,4 +1,5 @@
1
import { Sidebar } from "@/components/layout/sidebar";
2
+import { CommandSearch } from "@/components/ui/command-search";
3
4
export default function MainLayout({
5
children,
@@ -8,6 +9,7 @@ export default function MainLayout({
8
9
return (
10
<div className="h-screen overflow-hidden text-foreground">
11
<Sidebar />
12
+ <CommandSearch />
13
<div className="relative h-screen pl-0 md:pl-76 lg:pl-84">
14
<div className="h-screen overflow-y-auto overflow-x-hidden pt-12 md:pt-0">
15
{children}
0 commit comments