This commit is contained in:
2026-07-08 09:05:15 +00:00
parent 4f3b805b8c
commit 3f507e1bee
36 changed files with 1910 additions and 603 deletions

View 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>
)
}