PluginProbe
Extendify / 3.1.1
Extendify v3.1.1
3.2.1 3.2.0 3.1.6 3.1.5 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.6 3.0.5 3.0.4 trunk 0.1.0 0.10.0 0.10.1 0.10.2 0.11.0 0.11.1 0.2.0 0.3.0 0.3.1 0.4.0 0.5.0 0.6.0 All 127 releases
extendify / src / Agent / components / redirects / RedirectThemeVariations.jsx

RedirectThemeVariations.jsx in Extendify 3.1.1, at src/Agent/components/redirects/RedirectThemeVariations.jsx

23 lines 743 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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