| 1 |
import { __ } from '@wordpress/i18n'; |
| 2 |
|
| 3 |
export const RedirectThemeVariations = () => { |
| 4 |
return ( |
| 5 |
<div className="mb-4 ml-10 mr-2 flex flex-col rounded-lg border border-gray-300 bg-gray-50 rtl:ml-2 rtl:mr-10"> |
| 6 |
<div className="rounded-lg border-b border-gray-300 bg-white p-3"> |
| 7 |
<p className="m-0 p-0 text-sm text-gray-900"> |
| 8 |
{__( |
| 9 |
'Hey there! It looks like you are trying to change your theme colors, but you are not on a page where we can do that.', |
| 10 |
'extendify-local', |
| 11 |
)} |
| 12 |
</p> |
| 13 |
</div> |
| 14 |
<div className="m-0 p-3 text-sm text-gray-900"> |
| 15 |
{__('Suggestion:', 'extendify-local')}{' '} |
| 16 |
<a href={`${window.extSharedData.homeUrl}`}> |
| 17 |
{__('Home page', 'extendify-local')} |
| 18 |
</a> |
| 19 |
</div> |
| 20 |
</div> |
| 21 |
); |
| 22 |
}; |
| 23 |
|