import { useTranslation } from '@/hooks/useTranslation'; import { Button } from '@/components/ui/button'; import { ArrowLeft } from 'lucide-react'; interface ComingSoonProps { feature: string; onGoBack?: () => void; } /** SUMI-themed logo mark (simplified V shape) */ function SumiLogoIllustration() { return (
); } export function ComingSoon({ feature, onGoBack }: ComingSoonProps) { const { t } = useTranslation(); return (

{feature}

{t('comingSoon.description')}

{onGoBack && ( )}
); }