PluginProbe
Extendify / 3.2.1
Extendify v3.2.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 / Launch / pages / NeedsTheme.jsx

NeedsTheme.jsx in Extendify 3.2.1, at src/Launch/pages/NeedsTheme.jsx

30 lines 919 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import { Title } from '@launch/components/Title';
2 import { PageLayout } from '@launch/layouts/PageLayout';
3 import { __ } from '@wordpress/i18n';
4
5 export const NeedsTheme = () => {
6 return (
7 <PageLayout includeNav={false}>
8 <div className="grow overflow-y-auto px-6 py-8 md:p-12 3xl:p-16">
9 <Title
10 title={__('One more thing before we start.', 'extendify-local')}
11 />
12 <div className="relative mx-auto w-full max-w-xl">
13 <p className="text-base">
14 {__(
15 'Launch requires the Extendable theme to work. You can install it from the link below and start over once activated.',
16 'extendify-local',
17 )}
18 </p>
19 <a
20 className="mt-4 text-base font-medium text-design-main underline"
21 href={`${window.extSharedData.adminUrl}theme-install.php?theme=extendable`}
22 >
23 {__('Take me there', 'extendify-local')}
24 </a>
25 </div>
26 </div>
27 </PageLayout>
28 );
29 };
30