From 6a74c2d14e793cfb7a51c2c86f99380568341e27 Mon Sep 17 00:00:00 2001 From: jason Date: Mon, 9 Mar 2026 20:23:17 -0500 Subject: [PATCH] feat: Wire PairingSimulator into App router and navbar --- client/src/App.jsx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/client/src/App.jsx b/client/src/App.jsx index 24285e0..42b5d3f 100644 --- a/client/src/App.jsx +++ b/client/src/App.jsx @@ -1,11 +1,12 @@ -import { BrowserRouter as Router, Routes, Route, Link } from 'react-router-dom' -import { Home, Users, Activity, Heart } from 'lucide-react' +import { BrowserRouter as Router, Routes, Route, Link} from 'react-router-dom' +import { Home, Users, Activity, Heart, FlaskConical } from 'lucide-react' import Dashboard from './pages/Dashboard' import DogList from './pages/DogList' import DogDetail from './pages/DogDetail' import PedigreeView from './pages/PedigreeView' import LitterList from './pages/LitterList' import BreedingCalendar from './pages/BreedingCalendar' +import PairingSimulator from './pages/PairingSimulator' import './App.css' function App() { @@ -39,6 +40,10 @@ function App() { Breeding + + + Pairing + @@ -51,6 +56,7 @@ function App() { } /> } /> } /> + } />