PluginProbe
Extendify / 3.1.0
Extendify v3.1.0
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 / AutoLaunch / components / NeedsTheme.jsx

NeedsTheme.jsx in Extendify 3.1.0, at src/AutoLaunch/components/NeedsTheme.jsx

26 lines 846 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 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