import { StepButton } from '@/components/onboarding/step-button'; import { StepHeader } from '@/components/onboarding/step-header'; import { Bird } from 'lucide-react'; interface StepWelcomeProps { onContinue: () => void; } export function StepWelcome({ onContinue }: StepWelcomeProps) { return (

This will take less than 5 minutes

); }