final
This commit is contained in:
19
src/components/sections/ServiceImage.jsx
Normal file
19
src/components/sections/ServiceImage.jsx
Normal file
@@ -0,0 +1,19 @@
|
||||
export default function ServiceImage({ src, srcSet, width, height, alt }) {
|
||||
return (
|
||||
<div className="elementor-element elementor-element-2837963 elementor-widget elementor-widget-image" data-id="2837963" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
|
||||
<div className="elementor-widget-container">
|
||||
<img
|
||||
fetchPriority="high"
|
||||
decoding="async"
|
||||
width={width}
|
||||
height={height}
|
||||
src={src}
|
||||
className="attachment-full size-full wp-image-3201"
|
||||
alt={alt || ''}
|
||||
srcSet={srcSet}
|
||||
sizes="(max-width: 872px) 100vw, 872px"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user