diff --git a/src/App.jsx b/src/App.jsx index b78f15e..0e14dc3 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,7 +1,15 @@ -export default () => { - return ( -
+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"; -
- ) +export default () => { + const theme = useTheme(); + const logo = theme.palette.mode === "dark" ? DarkLogo : LightLogo; + + return ( + + Logo + + + ) } \ No newline at end of file