import { StepButton } from '@/components/onboarding/step-button'; import { StepHeader } from '@/components/onboarding/step-header'; import { __ } from '@/utils/i18n'; import { Bird } from 'lucide-react'; interface StepWelcomeProps { onContinue: () => void; } export function StepWelcome({ onContinue }: StepWelcomeProps) { return (
Whisper Money')} description={__( "Take control of your finances with privacy-first money tracking. Let's set up your account in just a few minutes.", )} large />

{__('This will take less than 5 minutes')}

); }