feat: compress some images
Some checks failed
Deploy to GitHub Pages / deploy (push) Blocked by required conditions
Deploy to GitHub Pages / build (push) Has been cancelled

This commit is contained in:
max_richter 2024-04-03 19:38:02 +02:00
parent feb9b21ff8
commit f52a13171c
6 changed files with 11 additions and 6 deletions

View File

@ -76,7 +76,7 @@ body {
position: absolute; position: absolute;
height: 100%; height: 100%;
width: 100%; width: 100%;
background: url(/noise.png); background: url(/images/noise.webp);
background-size: 200px; background-size: 200px;
pointer-events: none; pointer-events: none;
/* opacity: 0.3; */ /* opacity: 0.3; */

BIN
public/images/noise.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

View File

@ -1,12 +1,14 @@
--- ---
title: "Point de l'Isle" title: "Point de l'Isle"
date: 2017-03-29 date: 2017-03-29
cover: ./images/PointDeLIsle.jpg cover: ./images/PointDeLIsle_small.jpg
--- ---
import ImageGallery from "@components/ImageGallery.svelte";
import Image from "@components/Image.astro"; import Image from "@components/Image.astro";
import PointDeLIsle from "./images/PointDeLIsle.jpg"; import PointDeLIsle from "./images/PointDeLIsle_small.jpg";
<ImageGallery client:load/>
<Image src={PointDeLIsle} alt=""/> <Image src={PointDeLIsle} alt=""/>

View File

@ -1,12 +1,12 @@
--- ---
title: "Point de l'Isle" title: "Point de l'Isle"
date: 2017-03-29 date: 2017-03-29
cover: ./images/PointDeLIsle.jpg cover: ./images/PointDeLIsle_small.jpg
--- ---
import ImageGallery from "@components/ImageGallery.svelte"; import ImageGallery from "@components/ImageGallery.svelte";
import Image from "@components/Image.astro"; import Image from "@components/Image.astro";
import PointDeLIsle from "./images/PointDeLIsle.jpg"; import PointDeLIsle from "./images/PointDeLIsle_small.jpg";
<ImageGallery client:load/> <ImageGallery client:load/>