import { TypewriterText } from './TypewriterText'; import type { TranslationKey } from '@/lib/i18n'; interface DeployErrorProps { t: (key: TranslationKey) => string; errorMessage: string; onTryAgain: () => void; } export function DeployError({ t, errorMessage, onTryAgain }: DeployErrorProps) { return (