diff --git a/client/src/App.jsx b/client/src/App.jsx index 68191ec..c03c54a 100644 --- a/client/src/App.jsx +++ b/client/src/App.jsx @@ -10,6 +10,7 @@ import Orders from './pages/Orders'; import OrderNew from './pages/OrderNew'; import OrderDetail from './pages/OrderDetail'; import Restock from './pages/Restock'; +import Reports from './pages/Reports'; function AuthGate({ children }) { const [state, setState] = useState({ checked: false, authenticated: false }); @@ -53,6 +54,7 @@ export default function App() { } /> } /> } /> + } /> )} diff --git a/client/src/assets/gs-trefoil.svg b/client/src/assets/gs-trefoil.svg new file mode 100644 index 0000000..8c135d4 --- /dev/null +++ b/client/src/assets/gs-trefoil.svg @@ -0,0 +1 @@ + diff --git a/client/src/components/Layout.jsx b/client/src/components/Layout.jsx index 8d61d16..bc150fb 100644 --- a/client/src/components/Layout.jsx +++ b/client/src/components/Layout.jsx @@ -1,6 +1,7 @@ import { useState } from 'react'; import { Link, useLocation } from 'react-router-dom'; import { api } from '../api'; +import trefoilLogo from '../assets/gs-trefoil.svg'; const navItems = [ { path: '/', label: 'Dashboard' }, @@ -8,6 +9,7 @@ const navItems = [ { path: '/customers', label: 'Customers' }, { path: '/orders', label: 'Orders' }, { path: '/restock', label: 'Restock' }, + { path: '/reports', label: 'Reports' }, ]; export default function Layout({ children, onLogout }) { @@ -23,7 +25,7 @@ export default function Layout({ children, onLogout }) {
- Cookie Tracker + Girl ScoutsCookie Tracker