https://www.mycycle.shop/robots.txt
Ideal Robots.txt:
User-agent: *
Disallow: /cart/
Disallow: /checkout/
Disallow: /account/
Disallow: /login/
Disallow: /register/
Disallow: /wishlist/
Disallow: /search
Disallow: /*?*sort=
Disallow: /*?*filter=
Disallow: /*add-to-cart=*
Disallow: /privacy-policy/
Disallow: /terms-and-conditions/
Allow: /$
Allow: /blogs/
Allow: /shop/
Allow: /faq/
Allow: /wholesale
Allow: /about-us/
Allow: /contact-us/
Sitemap: [<https://www.mycycle.shop/sitemap.xml>](<https://www.mycycle.shop/sitemap.xml>)

Based on the screenshot you've shared, you're facing a Lazy Loading issue on an image in your website built with Next.js. The image element:
html
CopyEdit
<img alt="Woman with plants" loading="lazy" decoding="async" data-nimg="fill" ... />
is not being properly rendered for search engines, especially if it fails to appear in the DOM before user interaction or doesn’t have fallback markup.
loading="lazy" → defers loading until it's near the viewport.data-nimg="fill" → used by Next.js to fill the parent container.srcset with /_next/image?... → dynamically optimized image loader from Next.js.