Skip to content

Commit

Permalink
Remove lazy loading
Browse files Browse the repository at this point in the history
(i dont tolerate lazy people)
  • Loading branch information
kubgus committed Aug 15, 2024
1 parent c0b69d7 commit 91f3142
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/picture-frame.astro
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const { src, alt } = Astro.props;
---

<figure title={alt}>
<img src={src} alt={alt} loading="lazy" />
<img src={src} alt={alt} />
</figure>

<style>
Expand Down
2 changes: 1 addition & 1 deletion src/components/portrait-container.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div id="portrait-container">
<img src="/images/linkedin-portrait.jpg" alt="" id="portrait" loading="lazy" />
<img src="/images/linkedin-portrait.jpg" alt="" id="portrait"/>
</div>

<style>
Expand Down

0 comments on commit 91f3142

Please sign in to comment.