import { Empty, IconButton, Modal, ModalWrapper } from '@affine/component'; import { Trans } from '@affine/i18n'; import { useAFFiNEI18N } from '@affine/i18n/hooks'; import { CloseIcon } from '@blocksuite/icons'; import type React from 'react'; import { Content, ContentTitle, Header, StyleButton, StyleButtonContainer, StyleImage, StyleTips, } from './style'; interface TmpDisableAffineCloudModalProps { open: boolean; onClose: () => void; } export const TmpDisableAffineCloudModal: React.FC< TmpDisableAffineCloudModalProps > = ({ open, onClose }) => { const t = useAFFiNEI18N(); return (
{t['com.affine.cloudTempDisable.title']()} We are upgrading the AFFiNE Cloud service and it is temporarily unavailable on the client side. If you wish to stay updated on the progress and be notified on availability, you can fill out the AFFiNE Cloud Signup . {t['Got it']()}
); };