Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions about.html
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ <h1>About Us</h1>
<article class="team-member" tabindex="0">
<div class="team-member-inner">
<div class="team-member-front">
<img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Priya Sharma - Founder & Head Chef" />
<img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Priya Sharma - Founder & Head Chef" loading="lazy" decoding="async" />
<h4>Priya Sharma</h4>
<p>Founder & Head Chef - Crafting every dish with love and authenticity.</p>
</div>
Expand All @@ -107,7 +107,7 @@ <h4>About Priya</h4>
<article class="team-member" tabindex="0">
<div class="team-member-inner">
<div class="team-member-front">
<img src="https://randomuser.me/api/portraits/women/45.jpg" alt="Anjali Verma - Customer Support" />
<img src="https://randomuser.me/api/portraits/women/45.jpg" alt="Anjali Verma - Customer Support" loading="lazy" decoding="async" />
<h4>Anjali Verma</h4>
<p>Customer Support - Always here to assist you with your orders.</p>
</div>
Expand Down
4 changes: 4 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -587,6 +587,8 @@ <h2>
<img
src="https://randomuser.me/api/portraits/women/68.jpg"
alt="Priya Sharma"
loading="lazy"
decoding="async"
/>

<h4>
Expand Down Expand Up @@ -631,6 +633,8 @@ <h4>
<img
src="https://randomuser.me/api/portraits/women/45.jpg"
alt="Anjali Verma"
loading="lazy"
decoding="async"
/>

<h4>
Expand Down
3 changes: 2 additions & 1 deletion js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,8 @@ function createCard(item, highlightQuery = "") {
card.innerHTML = `
<img src="${item.image}"
alt="${item.name}"
loading="lazy" />
loading="lazy"
decoding="async" />

<div class="card-content">

Expand Down