This commit is contained in:
Jake Kasper
2025-09-02 09:18:41 -05:00
parent 90af8fab02
commit f29876b041
8 changed files with 389 additions and 4 deletions

View File

@@ -26,6 +26,7 @@ import ApplicationPlan from './pages/Applications/ApplicationPlan';
import ApplicationLog from './pages/Applications/ApplicationLog';
import History from './pages/History/History';
import Weather from './pages/Weather/Weather';
import Mowing from './pages/Mowing/Mowing';
import Profile from './pages/Profile/Profile';
// Admin pages
@@ -240,6 +241,16 @@ function App() {
</ProtectedRoute>
}
/>
<Route
path="/mowing"
element={
<ProtectedRoute>
<Layout>
<Mowing />
</Layout>
</ProtectedRoute>
}
/>
<Route
path="/profile"
element={
@@ -335,4 +346,4 @@ function App() {
);
}
export default App;
export default App;