feat(newSite): history about us and contact us started

This commit is contained in:
2025-06-28 15:59:44 -06:00
parent 42712746eb
commit bef3b1ce95
12 changed files with 659 additions and 334 deletions

View File

@ -13,6 +13,7 @@ import "./index.css";
import MockPage from "./MockDB/MockPage";
import Home from "./Home/Home";
import History from "./History/History";
import Contact from "./Contact/Contact";
const root = ReactDOM.createRoot(document.getElementById("root"));
root.render(
@ -46,8 +47,11 @@ root.render(
path="/MockPage"
element={<MockPage />}></Route>
<Route
path="History"
path="/History"
element={<History />}></Route>
<Route
path="/Contact"
element={<Contact />}></Route>
</Route>
</Routes>
</BrowserRouter>