diff --git a/web/audit-log/app/layout.tsx b/web/audit-log/app/layout.tsx index 817c017..b78312e 100644 --- a/web/audit-log/app/layout.tsx +++ b/web/audit-log/app/layout.tsx @@ -1,3 +1,5 @@ +import { ThemeProvider, I18nProvider, ToastProvider, typography } from "@nexarch/shl"; + export const metadata = { title: "NEXARCH Audit-Log", }; @@ -9,8 +11,19 @@ export default function RootLayout({ }) { return ( - - {children} + + + + {children} + + ); diff --git a/web/audit-log/package.json b/web/audit-log/package.json index 94d14f3..5798042 100644 --- a/web/audit-log/package.json +++ b/web/audit-log/package.json @@ -8,6 +8,7 @@ "lint": "next lint" }, "dependencies": { + "@nexarch/shl": "file:../shl", "next": "14.2.35", "react": "18.3.1", "react-dom": "18.3.1"