import { Dialog } from '@headlessui/react' import { ActionButton } from './ActionButton' import { useSettingsAuthContext } from 'hooks/useSettingsAuthContext' import { useState } from 'react' const DownloadAppBanner = () => { const { settings } = useSettingsAuthContext() const [isBannerDismissed, setIsBannerDismissed] = useState( settings.context.app.dismissWebBanner.current ) return ( ({})} >

Modeling App is better as a desktop app!

setIsBannerDismissed(true)} iconStart={{ icon: 'close', className: 'p-1', bgClassName: 'bg-warn-70 hover:bg-warn-80 dark:bg-warn-70 dark:hover:bg-warn-80', iconClassName: 'text-warn-10 group-hover:text-warn-10 dark:text-warn-10 dark:group-hover:text-warn-10', }} className="!p-0 !bg-transparent !border-transparent" />

The browser version of the app only saves your data temporarily in{' '} localStorage , and isn't backed up anywhere! Visit{' '} our website {' '} to download the app for the best experience.

{!navigator?.userAgent.includes('Chrome') && (

If you want to stay here on the web-app, we currently only support Chrome. Please use{' '} this link {' '} to download it.

)}
) } export default DownloadAppBanner