import Row from '../Row'; import {__} from '@wordpress/i18n'; import {ExternalLink, InternalLink} from '../Link'; import './styles.scss'; type LeftContentSectionProps = { assets: string; }; /** * @since 3.6.0 Updated copy * @since 3.0.0 */ export default function LeftContentSection({assets}: LeftContentSectionProps) { return (

{__('What’s new in the Visual Form Builder', 'give')}

{__( 'GiveWP introduces an enhanced forms experience powered by the new Visual Donations Form Builder.', 'give' )}

{__('Create a donation form', 'give')}

{__('This is powered by the new Visual Donation Form Builder', 'give')}

{__('Try the new form builder', 'give')}

{__('New Updates', 'give')}

{__( 'The team is still working on some new features, add-on and payment gateway compatibility to make your form experience better.', 'give' )}

{__('Read documentation', 'give')}
); }