client/packages/onboarding/src/steps.tsx
Alois ace7973dff
Some checks failed
/ build-web (push) Failing after 5m27s
/ build-desktop (linux) (push) Failing after 5m54s
/ build-mobile (push) Failing after 8m0s
/ release (push) Has been skipped
(feat): big methanium/ui migration
(feat): update message state icons
(qol): update todo
(qol): formatted
2026-07-26 18:55:46 +02:00

15 lines
475 B
TypeScript

import { ThemeOnboardingPage, type OnboardingStep } from "@methanium/ui";
export const onboardingSteps = (
themeId: string | null,
setThemeId: (id: string) => void,
): OnboardingStep[] => [
{
id: "theme",
title: "Theming",
description:
"Pick a main theme and after that ... let's just hope you don't get into decision paralysis",
defaultCanContinue: false,
content: <ThemeOnboardingPage value={themeId} onValueChange={setThemeId} />,
},
];