(wip): add onboarding
(fix): login page reloading
This commit is contained in:
parent
b6dfb4d019
commit
bf8f449f03
19 changed files with 461 additions and 439 deletions
10
packages/onboarding/src/steps.tsx
Normal file
10
packages/onboarding/src/steps.tsx
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
import type { OnboardingStep } from "@tensamin/ui";
|
||||
import OnboardingPage from "./pages/onboarding";
|
||||
|
||||
// Add future onboarding pages here. Completed users skip this entire manifest.
|
||||
export const onboardingSteps: OnboardingStep[] = [
|
||||
{
|
||||
id: "onboarding",
|
||||
content: <OnboardingPage />,
|
||||
},
|
||||
];
|
||||
Loading…
Reference in a new issue