refactor(images): add new folders to categorize events, gallery, whiskey

This commit is contained in:
Fx64b
2025-11-18 19:12:56 +01:00
parent 1f4cea0c35
commit 71a586280e
19 changed files with 15 additions and 15 deletions

View File

@ -10,7 +10,7 @@ import About from "../components/About.astro";
const events = [
{
image: "/images/karaoke.jpg",
image: "/images/events/Event5.jpg",
title: "Karaoke",
date: "Mittwoch - Samstag",
description: `
@ -20,7 +20,7 @@ const events = [
`,
},
{
image: "/images/pub_quiz.jpg",
image: "/images/events/Event1.jpg",
title: "Pub Quiz",
date: "Jeden Freitag",
description: `
@ -31,7 +31,7 @@ const events = [
`,
},
{
image: "/images/Event4.png",
image: "/images/events/Event4.png",
title: "Kevin McFlannigan <br> Live Music im Gallus Pub!",
date: "Sa, 27. September 2025",
description: `
@ -43,15 +43,15 @@ const events = [
];
const images = [
{ src: "/images/Gallery7.png", alt: "Siebtes Bild" },
{ src: "/images/Gallery8.png", alt: "Achtes Bild" },
{ src: "/images/Gallery9.png", alt: "Neuntes Bild" },
{ src: "/images/Gallery6.png", alt: "Sechstes Bild" },
{ src: "/images/Gallery1.png", alt: "Erstes Bild" },
{ src: "/images/Gallery2.png", alt: "Zweites Bild" },
{ src: "/images/Gallery3.png", alt: "Drittes Bild" },
{ src: "/images/Gallery4.png", alt: "Viertes Bild" },
{ src: "/images/Gallery5.png", alt: "Fünftes Bild" },
{ src: "/images/gallery/Gallery7.png", alt: "Siebtes Bild" },
{ src: "/images/gallery/Gallery8.png", alt: "Achtes Bild" },
{ src: "/images/gallery/Gallery9.png", alt: "Neuntes Bild" },
{ src: "/images/gallery/Gallery6.png", alt: "Sechstes Bild" },
{ src: "/images/gallery/Gallery1.png", alt: "Erstes Bild" },
{ src: "/images/gallery/Gallery2.png", alt: "Zweites Bild" },
{ src: "/images/gallery/Gallery3.png", alt: "Drittes Bild" },
{ src: "/images/gallery/Gallery4.png", alt: "Viertes Bild" },
{ src: "/images/gallery/Gallery5.png", alt: "Fünftes Bild" },
];
---