fix: moved to webp images

This commit is contained in:
Simeon Radivoev 2026-05-06 22:48:24 +03:00
parent 23c50785d9
commit 06f8a9abb5
Signed by: simeonradivoev
GPG key ID: 7611A451D2A5D37A
33 changed files with 48 additions and 48 deletions

1
.astro/types.d.ts vendored
View file

@ -1 +1,2 @@
/// <reference types="astro/client" /> /// <reference types="astro/client" />
/// <reference path="content.d.ts" />

BIN
src/assets/screenshots/3d screenshot.png (Stored with Git LFS)

Binary file not shown.

BIN
src/assets/screenshots/3dscreenshot.webp (Stored with Git LFS) Normal file

Binary file not shown.

BIN
src/assets/screenshots/3nhuKCK6E3.png (Stored with Git LFS)

Binary file not shown.

BIN
src/assets/screenshots/3nhuKCK6E3.webp (Stored with Git LFS) Normal file

Binary file not shown.

BIN
src/assets/screenshots/4MtAe7Wkev.png (Stored with Git LFS)

Binary file not shown.

BIN
src/assets/screenshots/4MtAe7Wkev.webp (Stored with Git LFS) Normal file

Binary file not shown.

BIN
src/assets/screenshots/6wz3gW8c2h.png (Stored with Git LFS)

Binary file not shown.

BIN
src/assets/screenshots/6wz3gW8c2h.webp (Stored with Git LFS) Normal file

Binary file not shown.

BIN
src/assets/screenshots/CpBLzTNM6N.png (Stored with Git LFS)

Binary file not shown.

BIN
src/assets/screenshots/CpBLzTNM6N.webp (Stored with Git LFS) Normal file

Binary file not shown.

BIN
src/assets/screenshots/EWPHmIBEE5.png (Stored with Git LFS)

Binary file not shown.

BIN
src/assets/screenshots/EWPHmIBEE5.webp (Stored with Git LFS) Normal file

Binary file not shown.

BIN
src/assets/screenshots/GL7SkQbHIY.png (Stored with Git LFS)

Binary file not shown.

BIN
src/assets/screenshots/GL7SkQbHIY.webp (Stored with Git LFS) Normal file

Binary file not shown.

BIN
src/assets/screenshots/MMeJxl4IXr.png (Stored with Git LFS)

Binary file not shown.

BIN
src/assets/screenshots/MMeJxl4IXr.webp (Stored with Git LFS) Normal file

Binary file not shown.

BIN
src/assets/screenshots/Pkazk0RufB.png (Stored with Git LFS)

Binary file not shown.

BIN
src/assets/screenshots/Pkazk0RufB.webp (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

BIN
src/assets/screenshots/mockup-1777308293568.webp (Stored with Git LFS) Normal file

Binary file not shown.

BIN
src/assets/screenshots/rBY2mgTLy0.png (Stored with Git LFS)

Binary file not shown.

BIN
src/assets/screenshots/rBY2mgTLy0.webp (Stored with Git LFS) Normal file

Binary file not shown.

BIN
src/assets/screenshots/xNj7scPEDQ.png (Stored with Git LFS)

Binary file not shown.

BIN
src/assets/screenshots/xNj7scPEDQ.webp (Stored with Git LFS) Normal file

Binary file not shown.

BIN
src/assets/screenshots/yObFD2LySH.jpg (Stored with Git LFS)

Binary file not shown.

BIN
src/assets/screenshots/yObFD2LySH.webp (Stored with Git LFS) Normal file

Binary file not shown.

BIN
src/assets/screenshots/zEQxtzhPGx.png (Stored with Git LFS)

Binary file not shown.

BIN
src/assets/screenshots/zEQxtzhPGx.webp (Stored with Git LFS) Normal file

Binary file not shown.

BIN
src/assets/screenshots/zl8Dj4xnEw.png (Stored with Git LFS)

Binary file not shown.

BIN
src/assets/screenshots/zl8Dj4xnEw.webp (Stored with Git LFS) Normal file

Binary file not shown.

View file

@ -1,6 +1,5 @@
--- ---
import gameflowLogo from "../assets/icon.svg"; import screenshot from "../assets/screenshots/3dscreenshot.webp";
import screenshot from "../assets/screenshots/3d screenshot.png";
import { Dot, Download } from "@lucide/astro"; import { Dot, Download } from "@lucide/astro";
import { Github } from "simple-icons-astro"; import { Github } from "simple-icons-astro";
import pkg from "../../package.json"; import pkg from "../../package.json";

View file

@ -1,6 +1,6 @@
--- ---
import { Image } from "@lucide/astro"; import { Image } from "@lucide/astro";
const images = import.meta.glob("../assets/screenshots/*.{png,jpg}", { const images = import.meta.glob("../assets/screenshots/*.webp", {
eager: true, eager: true,
}); });
--- ---