added webcam

This commit is contained in:
2026-05-29 10:20:58 +02:00
parent eec4a7fb10
commit 56edd90b6f
4 changed files with 79 additions and 0 deletions
+2
View File
@@ -8,6 +8,7 @@ import Menu from './Menu'
import Homepage from './Homepage';
import Bird_CNN from './Bird_CNN';
import Reviews from './Reviews.jsx';
import Object_Detection from './Object_Detection.jsx';
function App() {
@@ -17,6 +18,7 @@ function App() {
<Routes>
<Route path="/" element={<Homepage />} />
<Route path="/bird_cnn" element={<Bird_CNN />} />
<Route path="/object_detection" element={<Object_Detection />} />
<Route path="/reviews" element={<Reviews />} />
<Route path="*" element={<Navigate to="/" replace />} />
</Routes>