feat: DISABLE page Trip Calendar as it is way too much overhead for API and database!

This commit is contained in:
dancingCycle 2023-11-24 10:20:30 +01:00
parent 61a094ecc9
commit 4da1aacbbc
2 changed files with 4 additions and 6 deletions

View File

@ -19,11 +19,6 @@ function NavigationBar () {
<Nav.Link>Files</Nav.Link>
</LinkContainer>
</Nav>
<Nav className="mr-auto">
<LinkContainer to="/trip-calendar">
<Nav.Link>Trip Calendar</Nav.Link>
</LinkContainer>
</Nav>
<Nav className="mr-auto">
<LinkContainer to="/contact">
<Nav.Link>Contact</Nav.Link>

View File

@ -25,7 +25,6 @@ export default function Main() {
<Route path="/" element={<HomePage />} />
<Route path="/agency" element={<OverviewNext />} />
<Route path="/files" element={<Files />} />
<Route path="/trip-calendar" element={<TripCalendar />} />
<Route path="/contact" element={<Contact />} />
</Routes>
</BrowserRouter>
@ -37,4 +36,8 @@ export default function Main() {
/** TODO Disable this route as it is not working!
<Route path="/service" element={<Service />} />
*/
/** TODO Disable this route as it is way too much overhead for API and database!
<Route path="/trip-calendar" element={<TripCalendar />} />
*/
};