import reviewImg from '../../assets/img/rating/review.png'
import { __ } from '@wordpress/i18n'

function Ratings() {
  return (
    <>
        {/* review area start */}
        <div className="strb-review-area ">
            <div className="strb-container">
                <div className="strb-row">
                <div className="strb-col-xl-12">
                    <div className="strb-review-item strb-d-md-flex strb-align-items-start">
                    <div className="strb-review-icon">
                        <span>
                        <img src={reviewImg} alt="" />
                        </span>
                    </div>
                    <div className="strb-review-content">
                        <h3 className="strb-review-title">{__('Happy with our Work?', 'shopbuild')}</h3>
                        <p>{__('We are really thankful to you that you have chosen our plugin. If our plugin brings <br /> a smile in your face while working, please share your happiness by giving us a <br /> <span>5*****</span> rating in WordPress Org. ', 'shopbuild')}</p>
                        <div className="strb-review-btn-wrapper">
                        <a target="_blank" href="https://wordpress.org/support/plugin/shopbuild/reviews/#new-post" className="strb-btn">{__('\I\'m Happy to Give You 5*', 'shopbuild')}</a>
                        </div>
                    </div>
                    </div>
                </div>
                </div>
            </div>
        </div>
    </>
  )
}

export default Ratings