diff --git a/app/dashboard/layout.tsx b/app/dashboard/layout.tsx new file mode 100644 index 0000000..849e2eb --- /dev/null +++ b/app/dashboard/layout.tsx @@ -0,0 +1,24 @@ +import { AppSidebar } from "@/components/Layouts/AppSidebar" +import { Footer } from "@/components/Layouts/Footer" +import { Header } from "@/components/Layouts/Header" +import { Toaster } from "@/components/ui/toast" + +export default function DashboardLayout({ + children, +}: { + children: React.ReactNode +}) { + return ( +
Breadcrumb
+Variants
+Sizes
+Date Picker
++ {date && <>Selected: {date.toLocaleDateString()}>} + {range?.from && ( + <> + {date && " · "} + Range: {range.from.toLocaleDateString()} + {range.to && <> – {range.to.toLocaleDateString()}>} + > + )} +
+ )} +Modal
+ +Toast
+Alert Dialogs
+