diff --git a/client/src/main.jsx b/client/src/main.jsx
index 0291fe5..91cc3dc 100644
--- a/client/src/main.jsx
+++ b/client/src/main.jsx
@@ -1,10 +1,13 @@
-import React from 'react'
-import ReactDOM from 'react-dom/client'
+import { StrictMode } from 'react'
+import { createRoot } from 'react-dom/client'
+import { SettingsProvider } from './hooks/useSettings'
import App from './App.jsx'
import './index.css'
-ReactDOM.createRoot(document.getElementById('root')).render(
-
-
- ,
-)
\ No newline at end of file
+createRoot(document.getElementById('root')).render(
+
+
+
+
+ ,
+)