From 3bc61eae1c589735a98acfca6211e34b5a724404 Mon Sep 17 00:00:00 2001 From: Dominik Banaszak Date: Sat, 20 Jan 2024 18:10:17 +0100 Subject: [PATCH] add: logo, nav --- Frontend/CatApp/src/App.tsx | 10 +++-- Frontend/CatApp/src/components/Detector.tsx | 47 ++++++++++++++++++++ Frontend/CatApp/src/components/Nav.tsx | 11 +++++ Frontend/CatApp/src/images/logo.png | Bin 0 -> 68145 bytes __pycache__/cat_detection.cpython-39.pyc | Bin 0 -> 1242 bytes test.py | 9 ++++ 6 files changed, 74 insertions(+), 3 deletions(-) create mode 100644 Frontend/CatApp/src/components/Detector.tsx create mode 100644 Frontend/CatApp/src/components/Nav.tsx create mode 100644 Frontend/CatApp/src/images/logo.png create mode 100644 __pycache__/cat_detection.cpython-39.pyc create mode 100644 test.py diff --git a/Frontend/CatApp/src/App.tsx b/Frontend/CatApp/src/App.tsx index 7caf9e5..98a35ca 100644 --- a/Frontend/CatApp/src/App.tsx +++ b/Frontend/CatApp/src/App.tsx @@ -1,7 +1,11 @@ +import Detector from "./components/Detector"; +import Nav from "./components/Nav"; + export default function App() { return ( -

- Hello world! -

+ <> +