import { FC } from 'react' import Notification from '@/shared/components/notification' import { Trans, useTranslation } from 'react-i18next' import Bowser from 'bowser' export const isDeprecatedBrowser = () => { const parser = Bowser.getParser(window.navigator.userAgent) return parser.satisfies({ safari: '~15', }) } export const DeprecatedBrowser: FC = () => { const { t } = useTranslation() return ( , ]} /> } /> ) }