diff --git a/src/features/onboarding/steps/step-preferences.tsx b/src/features/onboarding/steps/step-preferences.tsx index 501b53b9..9915a0c7 100644 --- a/src/features/onboarding/steps/step-preferences.tsx +++ b/src/features/onboarding/steps/step-preferences.tsx @@ -2,6 +2,7 @@ import { useState } from "react"; import { useOnboarding } from "@onboardjs/react"; +import { Check, Moon, Sun } from "lucide-react"; import { toast } from "sonner"; import { Button } from "@/components/ui/button"; import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar"; @@ -35,6 +36,11 @@ export const StepPreferences = () => { await next(); }; + const themeOptions: { value: "light" | "dark"; label: string; Icon: typeof Sun }[] = [ + { value: "light", label: "Light", Icon: Sun }, + { value: "dark", label: "Dark", Icon: Moon }, + ]; + return (