45 lines
1.7 KiB
Plaintext
45 lines
1.7 KiB
Plaintext
---
|
||
import "../styles/components/Drinks.css"
|
||
|
||
const { id } = Astro.props;
|
||
---
|
||
<section id={id} class="Drinks">
|
||
<h2 class="title">Drinks</h2>
|
||
|
||
<p class="note">
|
||
Ob ein frisch gezapftes Pint, ein edler Tropfen Whiskey oder ein gemütliches Glas Wein – hier kannst du in entspannter
|
||
Atmosphäre das Leben genießen. Natürlich dürfen auch Cocktails nicht fehlen. Vieles kreieren wir auch selber - Sláinte!
|
||
</p>
|
||
|
||
<a href="/pdf/Getraenke_Gallus_2025.pdf" class="card-link" target="_blank" rel="noopener noreferrer">Getränkekarte</a>
|
||
|
||
<h3 class="monats-hit">Monats Hit</h3>
|
||
|
||
<div class="mate-vodka">
|
||
<div class="circle" title="Mate Vodka">
|
||
<img src="/images/MonthlyHit.png" alt="Monats Hit" class="circle-image" />
|
||
<span class="circle-label"></span>
|
||
</div>
|
||
<div>Mate Vodka</div>
|
||
</div>
|
||
|
||
<p class="note">
|
||
Für Whisky-Liebhaber haben wir erlesene Sorten aus Schottland und Irland im Angebot.
|
||
</p>
|
||
|
||
<div class="circle-row">
|
||
<div class="circle whiskey-circle" title="Whiskey 1">
|
||
<img src="/images/whiskey/Whiskey1.png" alt="Whiskey 1" class="circle-image" />
|
||
<span class="circle-label"></span>
|
||
</div>
|
||
<div class="circle whiskey-circle" title="Whiskey 2">
|
||
<img src="/images/whiskey/Whiskey2.png" alt="Whiskey 2" class="circle-image" />
|
||
<span class="circle-label"></span>
|
||
</div>
|
||
<div class="circle whiskey-circle" title="Whiskey 3">
|
||
<img src="/images/whiskey/Whiskey3.png" alt="Whiskey 3" class="circle-image" />
|
||
<span class="circle-label"></span>
|
||
</div>
|
||
</div>
|
||
</section>
|