PluginProbe
Extendify / 0.10.2
Extendify v0.10.2
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 / Onboarding / pages / NeedsTheme.js

NeedsTheme.js in Extendify 0.10.2, at src/Onboarding/pages/NeedsTheme.js

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