import { Icon } from '@wordpress/components' import { Button } from '@wordpress/components' import { __ } from '@wordpress/i18n' import { SplitModal } from './SplitModal' import SettingsModal from './SettingsModal' import { growthArrow, patterns, layouts, support, star, brandLogo, } from '../icons' import { useGlobalStore } from '../../state/GlobalState' import Primary from '../buttons/Primary' export const NoImportModal = () => { const pushModal = useGlobalStore((state) => state.pushModal) return (
{brandLogo}

{__("You're out of imports", 'extendify')}

{__( 'Sign up today and get unlimited access to our entire collection of patterns and page layouts.', 'extendify', )}

{__('Get Unlimited Imports', 'extendify')}

{__('Have an account?', 'extendify')}

{__("Access to 100's of Patterns", 'extendify')}
{__('Beautiful full page layouts', 'extendify')}
{__('Fast and friendly support', 'extendify')}
{__('14-Day guarantee', 'extendify')}
) }