| 1 |
import { __ } from '@wordpress/i18n'; |
| 2 |
|
| 3 |
export const NeedsTheme = () => { |
| 4 |
return ( |
| 5 |
<div className="flex w-full flex-col max-w-5xl p-6 lg:p-10"> |
| 6 |
<h2 className="text-lg text-center text-gray-900 font-semibold px-4 py-0 m-0"> |
| 7 |
{__('One more thing before we start.', 'extendify-local')} |
| 8 |
</h2> |
| 9 |
<div className="relative mx-auto w-full max-w-xl text-gray-900"> |
| 10 |
<p className="text-base"> |
| 11 |
{__( |
| 12 |
'Hey there, Launch is powered by Extendable and is required to proceed. You can install it from the link below and start over once activated.', |
| 13 |
'extendify-local', |
| 14 |
)} |
| 15 |
</p> |
| 16 |
<a |
| 17 |
className="mt-4 text-base font-medium text-design-main underline" |
| 18 |
href={`${window.extSharedData.adminUrl}theme-install.php?theme=extendable`} |
| 19 |
> |
| 20 |
{__('Take me there', 'extendify-local')} |
| 21 |
</a> |
| 22 |
</div> |
| 23 |
</div> |
| 24 |
); |
| 25 |
}; |
| 26 |
|