From 58e9ddb78ec6e6d7192c28501836ca5d8d318f50 Mon Sep 17 00:00:00 2001 From: Timber Date: Sat, 13 Dec 2025 16:53:40 +0100 Subject: [PATCH 1/2] feat: link to explore page in profile / settings instead of root --- app/components/nav-bar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/nav-bar.tsx b/app/components/nav-bar.tsx index bc2db917..14ae5d58 100644 --- a/app/components/nav-bar.tsx +++ b/app/components/nav-bar.tsx @@ -30,7 +30,7 @@ export function NavBar() {
- + osem Logo From eefabc5d2367be37e552e1640994674e900d6fef Mon Sep 17 00:00:00 2001 From: David Scheidt Date: Fri, 9 Jan 2026 15:00:28 +0100 Subject: [PATCH 2/2] refactor: remove outdated stepper class --- app/components/stepper/index.tsx | 68 -------------------------------- 1 file changed, 68 deletions(-) delete mode 100644 app/components/stepper/index.tsx diff --git a/app/components/stepper/index.tsx b/app/components/stepper/index.tsx deleted file mode 100644 index 118d0adf..00000000 --- a/app/components/stepper/index.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import clsx from "clsx"; -import { Link } from "react-router"; - -interface Step { - title: string; - longTitle?: string; -} - -interface SearchProps { - setStep: (step: number) => void; - steps: Step[]; - activeStep: number; - activatedSteps: number[]; -} - -export default function Stepper(props: SearchProps) { - return ( -
- {/* Osem Logo*/} - - osem Logo - {/* - openSenseMap - */} - -
    - {props.steps.map((step: Step, index: number) => ( - - ))} -
-
- ); -}