Skip to content

Commit

Permalink
fix: update image formats from PNG to JPG in AboutUs and Gallery sect…
Browse files Browse the repository at this point in the history
…ions
  • Loading branch information
devferx committed Dec 3, 2024
1 parent db323b8 commit 79bff9a
Show file tree
Hide file tree
Showing 13 changed files with 5 additions and 6 deletions.
Binary file added src/assets/images/about-us-1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/assets/images/about-us-1.png
Binary file not shown.
Binary file added src/assets/images/about-us-2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/assets/images/about-us-2.png
Binary file not shown.
Binary file added src/assets/images/image-gallery-2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/assets/images/image-gallery-2.png
Binary file not shown.
Binary file removed src/assets/images/image-gallery-5-aprilfool.png
Binary file not shown.
Binary file added src/assets/images/image-gallery-7.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/assets/images/image-gallery-7.png
Binary file not shown.
Binary file added src/assets/images/image-gallery-9.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/assets/images/image-gallery-9.png
Binary file not shown.
4 changes: 2 additions & 2 deletions src/components/sections/AboutUs.astro
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
import AboutUsCard from '../AboutUsCard.astro';
import image1 from '../../assets/images/about-us-1.png';
import image2 from '../../assets/images/about-us-2.png';
import image1 from '../../assets/images/about-us-1.jpg';
import image2 from '../../assets/images/about-us-2.jpg';
import image3 from '../../assets/images/about-us-3.png';
---

Expand Down
7 changes: 3 additions & 4 deletions src/components/sections/Gallery.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,14 @@
import GalleryItem from '../GalleryItem.astro';
import image1 from '../../assets/images/image-gallery-1.png';
import image2 from '../../assets/images/image-gallery-2.png';
import image2 from '../../assets/images/image-gallery-2.jpg';
import image3 from '../../assets/images/image-gallery-3.png';
import image4 from '../../assets/images/image-gallery-4.png';
import image5 from '../../assets/images/image-gallery-5.png';
// import image5 from '../../assets/images/image-gallery-5-aprilfool.png';
import image6 from '../../assets/images/image-gallery-6.png';
import image7 from '../../assets/images/image-gallery-7.png';
import image7 from '../../assets/images/image-gallery-7.jpg';
import image8 from '../../assets/images/image-gallery-8.png';
import image9 from '../../assets/images/image-gallery-9.png';
import image9 from '../../assets/images/image-gallery-9.jpg';
---

<section class="container mx-auto px-5 py-12 md:py-16 lg:px-28">
Expand Down

0 comments on commit 79bff9a

Please sign in to comment.