remove fire woman

This commit is contained in:
2026-01-08 20:32:40 +00:00
parent 239865212c
commit f42faab0c3

View File

@@ -2,13 +2,12 @@
import { ref } from "vue"; import { ref } from "vue";
const images = [ const images = [
"/img/memes/fire-woman.gif",
"/img/memes/pidgeon.gif", "/img/memes/pidgeon.gif",
"/img/memes/no_slip.png", "/img/memes/no_slip.png",
"/img/memes/epic.jpeg", "/img/memes/epic.jpeg",
]; ];
const currentIndex = ref(0); const currentIndex = ref(1);
function nextImage() { function nextImage() {
currentIndex.value = Math.floor(Math.random() * 100) % images.length; currentIndex.value = Math.floor(Math.random() * 100) % images.length;