diff --git a/src/App.css b/src/App.css index ea9f031..df9f406 100644 --- a/src/App.css +++ b/src/App.css @@ -48,6 +48,10 @@ font-size: 14px; } +.App .hide { + display: none; +} + /* - - - - MEDIA QUERIES - - - - */ @media only screen and (min-width: 768px) { .App .wip-disclaimer { diff --git a/src/App.tsx b/src/App.tsx index b1badc6..6d9ee84 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -9,6 +9,7 @@ import LandingPage from "./components/LandingPage"; import HomeView from "./components/HomeView"; import { useSpring } from "react-spring"; import { useState } from "react"; +import WIPDisclaimer from "./components/WIPDisclaimer"; function App() { const [hueFlip, setHueFlip] = useState(false); @@ -30,11 +31,11 @@ function App() { }); return ( -
+
-
-

- 🛠 Website Under Construction{" "} - 🛠 -

-

{`Some features may be incomplete, buggy, or site-breaking. Feel free to explore and please re-visit soon!`}

-
+
); }