From b2099e9bbbbc4378ddb8c669dcdb4a563085589b Mon Sep 17 00:00:00 2001 From: Felix Zett Date: Sun, 21 Sep 2025 11:42:54 +0200 Subject: [PATCH] feat: add logo; update navigation with logo --- frontend/index.html | 1 + frontend/public/favicon.svg | 10 +++ frontend/src/App.tsx | 120 +++++++++++++++++---------------- frontend/src/assets/logo.svg | 10 +++ frontend/src/declarations.d.ts | 6 ++ 5 files changed, 90 insertions(+), 57 deletions(-) create mode 100644 frontend/public/favicon.svg create mode 100644 frontend/src/assets/logo.svg create mode 100644 frontend/src/declarations.d.ts diff --git a/frontend/index.html b/frontend/index.html index b25b471..ad42381 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -4,6 +4,7 @@ Packlist +
diff --git a/frontend/public/favicon.svg b/frontend/public/favicon.svg new file mode 100644 index 0000000..6155fa5 --- /dev/null +++ b/frontend/public/favicon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 6bf766d..9c29f39 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -5,8 +5,9 @@ import ItemsPage from "./pages/ItemsPage"; import TripChecklist from "./pages/TripChecklist"; import TripsPage from "./pages/TripsPage"; import TagsPage from "./pages/TagsPage"; +import logo from "./assets/logo.svg"; -const APP_TITLE = "da packste dich weg"; +const APP_TITLE = "Packi"; function Navigation() { const location = useLocation(); @@ -30,56 +31,31 @@ function Navigation() { const isTripDetail = /^\/trips\/[^/]+$/.test(location.pathname); return ( -