render ThemeInti at Root

This commit is contained in:
Kentai Radiquum 2025-08-28 22:27:28 +05:00
parent 284e262527
commit 7e99062c0c
Signed by: Radiquum
GPG key ID: 858E8EE696525EED

View file

@ -16,6 +16,7 @@ import { Bounce, ToastContainer } from "react-toastify";
import { NavBarPc } from "./components/Navbar/NavBarPc";
import { NavBarMobile } from "./components/Navbar/NavBarMobile";
import { SettingsModal } from "./components/SettingsModal/SettingsModal";
import { ThemeInit } from "../.flowbite-react/init";
const inter = Inter({ subsets: ["latin"] });
@ -131,6 +132,7 @@ export const App = (props) => {
isOpen={isSettingModalOpen}
setIsOpen={setIsSettingModalOpen}
/>
<ThemeInit />
</body>
);
};