diff --git a/src/App.jsx b/src/App.jsx
index 0e14dc3..be3a6b6 100644
--- a/src/App.jsx
+++ b/src/App.jsx
@@ -1,15 +1,12 @@
-import { LinearProgress, Stack, useTheme} from "@mui/material";
-import LightLogo from "@/common/assets/images/logo/light.webp";
-import DarkLogo from "@/common/assets/images/logo/dark.webp";
+import {UserProvider} from "@contexts/User";
+import {InfoProvider} from "@contexts/Info";
export default () => {
- const theme = useTheme();
- const logo = theme.palette.mode === "dark" ? DarkLogo : LightLogo;
-
return (
-
-
-
-
+
+
+ Logged in
+
+
)
}
\ No newline at end of file