Update gallery images and refine Drinks section:
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

- **Gallery updates**: Added `Gallery9.png` and reordered images for better organization.
- **Drinks section tweak**: Removed redundant label text in "Mate Vodka" circle.
This commit is contained in:
k
2025-08-02 15:43:46 +02:00
parent f9fe914c32
commit a11c838d2a
3 changed files with 5 additions and 4 deletions

BIN
public/images/Gallery9.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 567 KiB

View File

@ -13,7 +13,7 @@ const { id } = Astro.props;
<div class="mate-vodka"> <div class="mate-vodka">
<div class="circle" title="Mate Vodka"> <div class="circle" title="Mate Vodka">
<img src="/images/MonthlyHit.png" alt="Monats Hit" class="circle-image" /> <img src="/images/MonthlyHit.png" alt="Monats Hit" class="circle-image" />
<span class="circle-label">Mate Vodka</span> <span class="circle-label"></span>
</div> </div>
<div>Mate Vodka</div> <div>Mate Vodka</div>
</div> </div>

View File

@ -74,14 +74,15 @@ const events = [
]; ];
const images = [ 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/Gallery1.png", alt: "Erstes Bild" },
{ src: "/images/Gallery2.png", alt: "Zweites Bild" }, { src: "/images/Gallery2.png", alt: "Zweites Bild" },
{ src: "/images/Gallery3.png", alt: "Drittes Bild" }, { src: "/images/Gallery3.png", alt: "Drittes Bild" },
{ src: "/images/Gallery4.png", alt: "Viertes Bild" }, { src: "/images/Gallery4.png", alt: "Viertes Bild" },
{ src: "/images/Gallery5.png", alt: "Fünftes 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" },
]; ];
--- ---