import { StepButton } from '@/components/onboarding/step-button'; import { StepHeader } from '@/components/onboarding/step-header'; import { __ } from '@/utils/i18n'; import { Eye, EyeOff, Lock, Server, Shield, User } from 'lucide-react'; interface StepEncryptionExplainedProps { onContinue: () => void; } export function StepEncryptionExplained({ onContinue, }: StepEncryptionExplainedProps) { return (
} /> } /> } />
{__('You see:')} {__('STARBUCKS@TEKKA PLC')}
{__('We see:')} {__('$KO!F6LMHU1W%TAEQFZMD9')}
); } function Item({ title, description, icon, }: { title: string; description: string; icon: React.ReactNode; }) { return (
{icon}

{title}

{description}

); }