wix-style-react
Version:
22 lines (20 loc) • 652 B
JavaScript
import React from 'react';
import MarketingPageLayoutContent from '..';
import Text from '../../Text';
import Button from '../../Button';
export default () => (
<MarketingPageLayoutContent
title="Drive Traffic to Your Site with Email Campaigns"
content={
<Text>
<ul>
<li>Create an email in just a few clicks</li>
<li>Easily personalize with images, text and links</li>
<li>Track your open and click rates in one place</li>
<li>Schedule your campaigns for the best results</li>
</ul>
</Text>
}
actions={<Button size="large">Create Your First Email</Button>}
/>
);