import { StepButton } from '@/components/onboarding/step-button'; import { StepHeader } from '@/components/onboarding/step-header'; import { __ } from '@/utils/i18n'; import { Bot, Eye, EyeOff, Sparkles, Zap } from 'lucide-react'; interface StepSmartRulesProps { onContinue: () => void; } export function StepSmartRules({ onContinue }: StepSmartRulesProps) { return (

{__('Pattern Matching')}

{__( 'Create rules like "If description contains \'AMAZON\',\n categorize as Shopping"', )}

{__('Instant Application')}

{__( 'Rules apply automatically when you import new\n transactions', )}

{__('Why No AI Auto-Categorization?')}

{__('Privacy comes first')}

{__( 'AI requires sending your data to external\n servers', )}

{__( 'This would break our end-to-end encryption\n promise', )}

{__('Your rules run entirely in your browser')}

{__( 'We never see your transaction descriptions', )}

{__("You're in complete control")}

{__('Create, edit, and delete rules anytime')}

); }