diff --git a/src/components/onboarding/OnboardingFlow.tsx b/src/components/onboarding/OnboardingFlow.tsx index 25f54fa..6f01796 100644 --- a/src/components/onboarding/OnboardingFlow.tsx +++ b/src/components/onboarding/OnboardingFlow.tsx @@ -10,11 +10,36 @@ interface OnboardingFlowProps { // ─── Shared layout ─────────────────────────────────────────────────────────── -function Shell({ children }: { children: React.ReactNode }) { +function Shell({ + children, + step, + totalSteps, +}: { + children: React.ReactNode; + step?: number; + totalSteps?: number; +}) { return (
+ You can reveal your key any time in Settings → Identity. +
Your public key. Safe to share.
+ + {nsec && ( + <> ++ Your secret key — the only way to recover this account. Never share it. Back it up somewhere safe. +
+ > + )}