From eb316aa875f43a6f895c5203267ab72b5e6cf918 Mon Sep 17 00:00:00 2001 From: RayLui2 Date: Mon, 27 May 2024 17:42:58 -0700 Subject: [PATCH] Product Pages - No functionality --- .../react-frontend/src/Components/Navbar.jsx | 2 + .../react-frontend/src/Components/Table.jsx | 6 ++ packages/react-frontend/src/Styles/Navbar.css | 43 ++++++++++ .../react-frontend/src/Views/ProductPage.jsx | 80 +++++++++++++++++++ 4 files changed, 131 insertions(+) create mode 100644 packages/react-frontend/src/Views/ProductPage.jsx diff --git a/packages/react-frontend/src/Components/Navbar.jsx b/packages/react-frontend/src/Components/Navbar.jsx index 8066afc..62bfe6c 100644 --- a/packages/react-frontend/src/Components/Navbar.jsx +++ b/packages/react-frontend/src/Components/Navbar.jsx @@ -7,6 +7,7 @@ import ManageOrders from "../Views/ManageOrders"; import AddOrders from "../Views/AddOrders"; import OrderStatistics from "../Views/OrderStatistics"; import ProfilePage from "../Views/Profile"; +import ProductPage from "../Views/ProductPage"; // Import ProductPage component import "../Styles/Navbar.css"; function App() { @@ -25,6 +26,7 @@ function App() { } /> } /> } /> + } />