Fix file organization and naming

[MAILPOET-4404]
This commit is contained in:
Jan Jakes
2022-06-28 14:46:41 +02:00
committed by Jan Jakeš
parent 14c0e1dc4d
commit 3e9d9b0d4e
11 changed files with 13 additions and 11 deletions

View File

@@ -0,0 +1,21 @@
import { __ } from '@wordpress/i18n';
import { CreateWorkflowFromTemplateButton } from '../testing';
export function Onboarding() {
return (
<div className="mailpoet-automation onboarding">
<img src="" alt="" />
<h1>{__('Scale your business with advanced automations', 'mailpoet')}</h1>
<p>
{__(
'Automated workflow allows you to set up a chain of interactions with your subscribers with less efforts. You control all the flow with a visual scheme and a set of goals. Try it!',
'mailpoet',
)}
</p>
<CreateWorkflowFromTemplateButton />
<a href="#" className="button secondary">
{__('Learn more', 'mailpoet')}
</a>
</div>
);
}