import { Card, Gridicon } from '@automattic/components'; import { Button } from '@wordpress/components'; import { useTranslate } from 'i18n-calypso'; import { FunctionComponent } from 'react'; interface Props { handleButtonClick: () => void; } const MarketingToolsHeader: FunctionComponent< Props > = ( { handleButtonClick } ) => { const translate = useTranslate(); return (

{ translate( 'Explore our premium plugins' ) }

{ translate( "We've added premium plugins to boost your site's capabilities. From bookings and subscriptions to email marketing and SEO tools, we have you covered." ) }

{
); }; export default MarketingToolsHeader;