diff --git a/favicon.png b/favicon.png
new file mode 100644
index 0000000..da0f50f
Binary files /dev/null and b/favicon.png differ
diff --git a/index.html b/index.html
index 36b8046..3b66ffb 100644
--- a/index.html
+++ b/index.html
@@ -3,12 +3,14 @@
- Mirage
+ Mirage - Privacy Focused Chat App
-
+
+
+
diff --git a/src/App.jsx b/src/App.jsx
index 84bad57..535a644 100644
--- a/src/App.jsx
+++ b/src/App.jsx
@@ -1,10 +1,18 @@
import React from 'react';
import Body from './components/Body';
+import {useState} from 'react';
function App() {
+ const [toggleTheme, setToggleTheme] = useState(false);
+
+ const handleToggle = () => {
+ setToggleTheme((prev) => !prev);
+ };
+
return (
-