| 1 |
import { __ } from '@wordpress/i18n' |
| 2 |
import { PageLayout } from '@onboarding/layouts/PageLayout' |
| 3 |
|
| 4 |
export const NeedsTheme = () => { |
| 5 |
return ( |
| 6 |
<PageLayout includeNav={false}> |
| 7 |
<div> |
| 8 |
<h1 className="text-3xl text-white mb-4 mt-0"> |
| 9 |
{__('Hey, one more thing before we start.', 'extendify')} |
| 10 |
</h1> |
| 11 |
</div> |
| 12 |
<div className="w-full"> |
| 13 |
<p className="mt-0 mb-8 text-base"> |
| 14 |
{__( |
| 15 |
'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.', |
| 16 |
'extendify', |
| 17 |
)} |
| 18 |
</p> |
| 19 |
<div className="flex flex-col items-start space-y-4 text-base"> |
| 20 |
<a |
| 21 |
href={`${window.extOnbData.site}/wp-admin/theme-install.php?theme=extendable`}> |
| 22 |
{__('Take me there')} |
| 23 |
</a> |
| 24 |
</div> |
| 25 |
</div> |
| 26 |
</PageLayout> |
| 27 |
) |
| 28 |
} |
| 29 |
|