goto(resolve(ROUTES.DASHBOARD.TENANTS))}
+ >
diff --git a/src/lib/components/layouts/sidebar-layout/root.svelte b/src/lib/components/layouts/sidebar-layout/root.svelte
index ebbe5ab..a10e848 100644
--- a/src/lib/components/layouts/sidebar-layout/root.svelte
+++ b/src/lib/components/layouts/sidebar-layout/root.svelte
@@ -6,12 +6,18 @@
import * as Sidebar from "$lib/components/ui/sidebar";
import type { HTMLAttributes } from "svelte/elements";
import { sidebar } from "$lib/stores/sidebar";
+ import type { Snippet } from "svelte";
let {
children,
+ sidebarRight,
+ headerRight,
breakcrumbs,
- }: HTMLAttributes & { breakcrumbs?: Array<{ label: string; href: string }> } =
- $props();
+ }: HTMLAttributes & {
+ breakcrumbs?: Array<{ label: string; href: string }>;
+ headerRight?: Snippet;
+ sidebarRight?: Snippet;
+ } = $props();
sidebar.setOpen(open)}>
@@ -22,7 +28,7 @@