import React from 'react'; import { __ } from '@wordpress/i18n'; const Hero = () => { const assetsUrl = window.THUMBPRESS?.assets_url || ''; const proImgBase = `${assetsUrl}admin/img/pro/`; return (

{__( 'Your Media Library is Silently Slowing Down Your Site.', 'image-sizes' )}

{__( 'Unused images, oversized files, and missing optimization pile up with every upload. Pro finds them all and fixes them — without touching a single file manually.', 'image-sizes' )}

( document.getElementById('thumbpress-pro-pricing')?.scrollIntoView({ behavior: 'smooth' }) )} className="text-white 2xl:text-base lg:text-[12px] cursor-pointer" > {__( 'Price starts from $5/month.', 'image-sizes' )}
ThumbPress modules ( document.getElementById('thumbpress-pro-features')?.scrollIntoView({ behavior: 'smooth' }) )} />
); }; export default Hero;