diff --git a/src/layouts/SetupContainer.tsx b/src/layouts/SetupContainer.tsx
index ada38d79..30647d7e 100644
--- a/src/layouts/SetupContainer.tsx
+++ b/src/layouts/SetupContainer.tsx
@@ -19,11 +19,13 @@ export default function SetupContainer({
className="fixed right-4 top-4 h-8 text-white"
onClick={toggleDarkMode}
/>
+
+
{currentStep !== null && (
-
+
)}
diff --git a/src/pages/Setup/Stepper.tsx b/src/pages/Setup/Stepper.tsx
index 6dbbc032..7a8d8593 100644
--- a/src/pages/Setup/Stepper.tsx
+++ b/src/pages/Setup/Stepper.tsx
@@ -1,3 +1,4 @@
+import { cn } from "@nextui-org/react";
import { useTranslation } from "react-i18next";
const NUMBER_OF_STEPS = 4;
@@ -10,25 +11,29 @@ export default function Stepper({ currentStep }: Props) {
const { t } = useTranslation();
return (
-
-
+
+
{Array.from({ length: NUMBER_OF_STEPS }).map((_, index: number) => (
- <>
- -
+ = currentStep && "opacity-30",
+ )}
>
-
+
{t(`setup.step.step`)} {index + 1}
-
+
{t(`setup.step.step_${index + 1}_description`)}
-
- {index < NUMBER_OF_STEPS - 1 && (
-
- )}
- >
+
+
))}