+ );
+}
\ No newline at end of file
diff --git a/tenant-dashboard/src/providers/ThemeProvider.tsx b/tenant-dashboard/src/providers/ThemeProvider.tsx
new file mode 100644
index 0000000..46acc66
--- /dev/null
+++ b/tenant-dashboard/src/providers/ThemeProvider.tsx
@@ -0,0 +1,19 @@
+'use client';
+
+import * as React from 'react';
+import { ThemeProvider as NextThemesProvider } from 'next-themes';
+import { type ThemeProviderProps } from 'next-themes/dist/types';
+
+export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
+ return (
+
+ {children}
+
+ );
+}
\ No newline at end of file