feat(header)^: added fade out on scroll down, TODO add updating banner from child component

This commit is contained in:
2025-03-22 12:10:28 -06:00
parent 595aecb12e
commit ee6d1646b1
4 changed files with 320 additions and 19 deletions

View File

@ -10,6 +10,7 @@ import JoinTheClub from "./Club Membership & Upcoming Events/JoinTheClub/JoinThe
import UpcomingEvents from "./Club Membership & Upcoming Events/UpcominEvents/UpcomingEvents";
import Gallery from "./Gallery/Gallery";
import "./index.css";
import MockPage from "./MockDB/MockPage";
const root = ReactDOM.createRoot(document.getElementById("root"));
root.render(
@ -35,6 +36,9 @@ root.render(
<Route
path="/Gallery"
element={<Gallery />}></Route>
<Route
path="/MockPage"
element={<MockPage />}></Route>
</Route>
</Routes>
</BrowserRouter>