Skip to content

Commit

Permalink
create layout for authenticated
Browse files Browse the repository at this point in the history
  • Loading branch information
hammadmajid committed Oct 20, 2024
1 parent d5b0abd commit 7f3e4a8
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions app/(authenticated)/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import DynamicBreadcrumbs from "@/components/dynamic-breadcrumb";

export default function Layout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<div className="grid w-full">
<DynamicBreadcrumbs />
{children}
</div>
);
}

0 comments on commit 7f3e4a8

Please sign in to comment.