Skip to content

Commit

Permalink
graphics format and eager/lazy updates
Browse files Browse the repository at this point in the history
  • Loading branch information
chaddupuis committed Nov 9, 2024
1 parent 30b74c3 commit 6bc8f32
Show file tree
Hide file tree
Showing 12 changed files with 27 additions and 27 deletions.
Binary file added src/assets/images/chad-photo-bike.webp
Binary file not shown.
Binary file added src/assets/images/chad-yinyang-computer.webp
Binary file not shown.
Binary file added src/assets/images/mit-350.webp
Binary file not shown.
Binary file added src/assets/images/msu-350.webp
Binary file not shown.
Binary file added src/assets/images/ua-350.webp
Binary file not shown.
Binary file added src/assets/images/ucsc-350.webp
Binary file not shown.
Binary file added src/assets/images/umn-350.webp
Binary file not shown.
Binary file added src/assets/images/usf-350.webp
Binary file not shown.
Binary file added src/assets/images/yin-yang-house-350.webp
Binary file not shown.
6 changes: 3 additions & 3 deletions src/components/About.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
import chadImage from '@assets/images/chad-photo-bike.png';
import chadImage from '@assets/images/chad-photo-bike.webp';
import { Image } from 'astro:assets';
---

Expand All @@ -19,9 +19,9 @@ import { Image } from 'astro:assets';
<Image
src={chadImage}
alt="Photo of Chad"
format="png"
format="webp"
width={300}
loading="eager"
loading="lazy"
class="rounded-lg"
/>
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/components/Hero.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
import heroImage from '@assets/images/chad-yinyang-computer.png';
import heroImage from '@assets/images/chad-yinyang-computer.webp';
import { Image } from 'astro:assets';
---

Expand All @@ -15,7 +15,7 @@ import { Image } from 'astro:assets';
<Image
src={heroImage}
alt="Yin Yang Coding Graphic"
format="png"
format="webp"
width={400}
height={400}
class="rounded-lg"
Expand Down
44 changes: 22 additions & 22 deletions src/components/Work.astro
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
import UMNImage from '@assets/images/umn-350.png';
import YYHImage from '@assets/images/yin-yang-house-350.png';
import MITImage from '@assets/images/mit-350.png';
import UAImage from '@assets/images/ua-350.png';
import UCSCImage from '@assets/images/ucsc-350.png';
import USFImage from '@assets/images/usf-350.png';
import MSUImage from '@assets/images/msu-350.png';
import UMNImage from '@assets/images/umn-350.webp';
import YYHImage from '@assets/images/yin-yang-house-350.webp';
import MITImage from '@assets/images/mit-350.webp';
import UAImage from '@assets/images/ua-350.webp';
import UCSCImage from '@assets/images/ucsc-350.webp';
import USFImage from '@assets/images/usf-350.webp';
import MSUImage from '@assets/images/msu-350.webp';
import { Image } from 'astro:assets';
---
Expand All @@ -30,9 +30,9 @@ import { Image } from 'astro:assets';
<Image
src={UMNImage}
alt="UMN Logo"
format="png"
format="webp"
width={300}
loading="eager"
loading="lazy"
class="rounded-lg"
/>
</div>
Expand All @@ -56,9 +56,9 @@ import { Image } from 'astro:assets';
<Image
src={YYHImage}
alt="YYH Logo"
format="png"
format="webp"
width={300}
loading="eager"
loading="lazy"
class="rounded-lg"
/>
</div>
Expand All @@ -80,9 +80,9 @@ import { Image } from 'astro:assets';
<Image
src={MITImage}
alt="MIT Logo"
format="png"
format="webp"
width={300}
loading="eager"
loading="lazy"
class="rounded-lg"
/>
</div>
Expand All @@ -109,9 +109,9 @@ import { Image } from 'astro:assets';
<Image
src={UAImage}
alt="UA Logo"
format="png"
format="webp"
width={300}
loading="eager"
loading="lazy"
class="rounded-lg"
/>
</div>
Expand All @@ -136,9 +136,9 @@ import { Image } from 'astro:assets';
<Image
src={UCSCImage}
alt="UCSC Logo"
format="png"
format="webp"
width={300}
loading="eager"
loading="lazy"
class="rounded-lg"
/>
</div>
Expand All @@ -162,17 +162,17 @@ import { Image } from 'astro:assets';
<Image
src={USFImage}
alt="USF Logo"
format="png"
format="webp"
width={300}
loading="eager"
loading="lazy"
class="rounded-lg"
/>
</div>
</div>
</section>
<!-- end USF Section -->

<!-- USF Section -->
<!-- MSU Section -->
<section class="container mx-auto p-4 my-10 scroll-mt-32">
<h3 class="mb-4">Michigan State University | Technical Support Specialist | 1989 - 1992</h3>
<div class="flex flex-wrap">
Expand All @@ -186,9 +186,9 @@ import { Image } from 'astro:assets';
<Image
src={MSUImage}
alt="MSU Logo"
format="png"
format="webp"
width={300}
loading="eager"
loading="lazy"
class="rounded-lg"
/>
</div>
Expand Down

0 comments on commit 6bc8f32

Please sign in to comment.