import Image from 'next/image'; import { redirect } from 'next/navigation'; import { MedReportLogo } from '@/components/med-report-logo'; import { Button } from '@kit/ui/button'; import { Trans } from '@kit/ui/trans'; export const SuccessNotification = ({ showLogo = true, title, titleKey, descriptionKey, walletProps, buttonProps, }: { showLogo?: boolean; title?: string; titleKey?: string; descriptionKey?: string; walletProps?: { amount: string; expiredAt: string; }; buttonProps?: { buttonTitleKey: string; href: string; }; }) => { return (