diff --git a/public/images/Gallery9.png b/public/images/Gallery9.png
new file mode 100644
index 0000000..0f12971
Binary files /dev/null and b/public/images/Gallery9.png differ
diff --git a/src/components/Drinks.astro b/src/components/Drinks.astro
index de37ad4..8d932b8 100644
--- a/src/components/Drinks.astro
+++ b/src/components/Drinks.astro
@@ -13,7 +13,7 @@ const { id } = Astro.props;

-
Mate Vodka
+
Mate Vodka
diff --git a/src/pages/index.astro b/src/pages/index.astro
index df87408..5416345 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -74,14 +74,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/Gallery6.png", alt: "Sechstes Bild" },
- { src: "/images/Gallery7.png", alt: "Siebtes Bild" },
- { src: "/images/Gallery8.png", alt: "Achtes Bild" },
];
---