diff --git a/rsconcept/frontend/src/App.tsx b/rsconcept/frontend/src/App.tsx index ab78ed49..9c702e2c 100644 --- a/rsconcept/frontend/src/App.tsx +++ b/rsconcept/frontend/src/App.tsx @@ -3,6 +3,7 @@ import { Route, Routes } from 'react-router-dom'; import Footer from './components/Footer'; import Navigation from './components/Navigation/Navigation'; import ToasterThemed from './components/ToasterThemed'; +import { useConceptTheme } from './context/ThemeContext'; import CreateRSFormPage from './pages/CreateRSFormPage'; import HomePage from './pages/HomePage'; import LibraryPage from './pages/LibraryPage'; @@ -15,6 +16,8 @@ import RSFormPage from './pages/RSFormPage'; import UserProfilePage from './pages/UserProfilePage'; function App () { + const { noNavigation } = useConceptTheme(); + return (
@@ -24,7 +27,8 @@ function App () { draggable={false} pauseOnFocusLoss={false} /> -
+
+
} /> @@ -42,6 +46,7 @@ function App () {
); } diff --git a/rsconcept/frontend/src/components/Navigation/Navigation.tsx b/rsconcept/frontend/src/components/Navigation/Navigation.tsx index a23d79f1..695157c8 100644 --- a/rsconcept/frontend/src/components/Navigation/Navigation.tsx +++ b/rsconcept/frontend/src/components/Navigation/Navigation.tsx @@ -18,7 +18,7 @@ function Navigation () { const navigateHelp = () => { navigate('/manuals') }; return ( -