| 1 |
import React from 'react'; |
| 2 |
import ElementorBanner from './ElementorBanner'; |
| 3 |
import { __ } from '@wordpress/i18n'; |
| 4 |
|
| 5 |
export default function ConnectPluginBanner() { |
| 6 |
return ( |
| 7 |
<ElementorBanner> |
| 8 |
<b |
| 9 |
dangerouslySetInnerHTML={{ |
| 10 |
__html: __( |
| 11 |
'The HubSpot plugin is not connected right now To use HubSpot tools on your WordPress site, %1$sconnect the plugin now%2$s' |
| 12 |
) |
| 13 |
.replace( |
| 14 |
'%1$s', |
| 15 |
'<a class="leadin-banner__link" href="admin.php?page=leadin&bannerClick=true">' |
| 16 |
) |
| 17 |
.replace('%2$s', '</a>'), |
| 18 |
}} |
| 19 |
></b> |
| 20 |
</ElementorBanner> |
| 21 |
); |
| 22 |
} |
| 23 |
|