Files
piratepoet/mailpoet/assets/js/src/automation/onboarding/index.tsx
Jan Jakes 3e9d9b0d4e Fix file organization and naming
[MAILPOET-4404]
2022-06-28 16:00:36 +02:00

22 lines
724 B
TypeScript

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>
);
}