From 65df987f62932556b4180981ceb0f7d759ae57a3 Mon Sep 17 00:00:00 2001 From: Drew Rautenberg Date: Fri, 17 Jul 2026 09:48:05 -0500 Subject: [PATCH] added routes and header button --- barkmanui/src/App.tsx | 3 +++ barkmanui/src/common/components/BarkHeader.tsx | 1 + 2 files changed, 4 insertions(+) diff --git a/barkmanui/src/App.tsx b/barkmanui/src/App.tsx index ac886f0..f9b327e 100644 --- a/barkmanui/src/App.tsx +++ b/barkmanui/src/App.tsx @@ -10,6 +10,7 @@ import {BarkHeader} from "./common/components/BarkHeader.tsx"; import AddItem from "./features/inventory/AddItem.tsx"; import { Notifications } from '@mantine/notifications'; import '@mantine/notifications/styles.css'; +import CustomerList from "@/features/customers/CustomerList.tsx"; // Create a client const queryClient = new QueryClient() @@ -46,6 +47,8 @@ function App() { }/> }/> }/> + }/> + diff --git a/barkmanui/src/common/components/BarkHeader.tsx b/barkmanui/src/common/components/BarkHeader.tsx index 7fef196..8ab8ea8 100644 --- a/barkmanui/src/common/components/BarkHeader.tsx +++ b/barkmanui/src/common/components/BarkHeader.tsx @@ -7,6 +7,7 @@ import BarkLogo from '@/assets/barklogo.png'; const links = [ { link: '/', label: 'Home' }, + { link: '/customers', label: 'Customers' }, { link: '/inventory', label: 'Inventory' }, ];