Skip to content

Commit

Permalink
implement lazy loading for images on integration page cards
Browse files Browse the repository at this point in the history
Signed-off-by: Oyelola Victoria <[email protected]>
  • Loading branch information
VriaA committed Sep 10, 2024
1 parent 720c1d8 commit 46909dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sections/Meshery/Meshery-integrations/Card.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const Card = () => {
return (
<IntegrationCard>
<div className="container">
<img src={MissingIntegration} alt="missing integration icon" />
<img src={MissingIntegration} alt="missing integration icon" loading="lazy" />
<h2>Missing an Integration?</h2>
<p>Meshery is an extensible platform with many purpose-built extension points. Use Meshery’s REST API or its GraphQL API both of which allow you to connect to any Kubernetes-native app.</p>
<Button
Expand All @@ -20,7 +20,7 @@ const Card = () => {
/>
</div>
<div className="container">
<img src={ListIntegration} alt="List your integration icon" />
<img src={ListIntegration} alt="List your integration icon" loading="lazy" />
<h2>Want your app listed?</h2>
<p>Learn more about submitting an integration and partnership opportunities.</p>
<ContactFormModal callout_text="Contact Us" form_header="Send Us An Email" />
Expand Down

0 comments on commit 46909dd

Please sign in to comment.