From ccb4f8218628dd4fae2c21c68b5d8ebbbe601ec7 Mon Sep 17 00:00:00 2001 From: Antoine M Date: Mon, 24 Jun 2024 14:47:48 +0200 Subject: [PATCH] including warning page --- src/App.js | 2 ++ src/assets/css/App.scss | 1 + 2 files changed, 3 insertions(+) diff --git a/src/App.js b/src/App.js index b25496a..ade99c9 100644 --- a/src/App.js +++ b/src/App.js @@ -13,6 +13,7 @@ import Cookies from "./pages/Cookies.jsx"; import Confidentiality from "./pages/Confidentiality.jsx"; import Thematiques from "./pages/Thematiques.jsx"; import PageNotFound from "./pages/PageNotFound.jsx"; +import Warning from "./pages/Warning.jsx"; import { useLocation, Routes, Route } from "react-router-dom"; import { AnimatePresence } from "framer-motion"; @@ -33,6 +34,7 @@ function App() { } /> + } /> } /> } /> } /> diff --git a/src/assets/css/App.scss b/src/assets/css/App.scss index fbc88ba..b85ad63 100644 --- a/src/assets/css/App.scss +++ b/src/assets/css/App.scss @@ -35,6 +35,7 @@ @import "./components/modals/CookiesModal.scss"; @import "./pages/welcome.scss"; +@import "./pages/Warning.scss"; @import "./pages/Home.scss"; @import "./pages/Profile.scss"; @import "./pages/Game.scss";