All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
- Update button link in Hero component to anchor to the events section - Improve circle image styling in Drinks.css for proper alignment and aesthetics
43 lines
1.0 KiB
Plaintext
43 lines
1.0 KiB
Plaintext
---
|
|
// src/components/Footer.astro
|
|
import "../styles/components/Footer.css"
|
|
const currentYear = new Date().getFullYear();
|
|
---
|
|
|
|
<footer class="footer">
|
|
<div class="footer-content">
|
|
<div class="footer-sections">
|
|
<div class="footer-section">
|
|
<h3>Öffnungszeiten</h3>
|
|
<p>Mittwoch: 19:00 - 00:00</p>
|
|
<p>Donnerstag: 19:00 - 00:00</p>
|
|
<p>Freitag: 19:00 - 01:00</p>
|
|
<p>Samstag: 19:00 - 01:00</p>
|
|
</div>
|
|
|
|
<div class="footer-section">
|
|
<h3>Kontakt</h3>
|
|
<p>Gallus Pub</p>
|
|
<p>Metzgergasse 13</p>
|
|
<p>9000 St. Gallen</p>
|
|
<p>Email:</p>
|
|
<p><a href="mailto:info@gallus-pub.ch">info@gallus-pub.ch</a></p>
|
|
</div>
|
|
|
|
<div class="footer-section">
|
|
<h3>Raumreservationen</h3>
|
|
<p>Du planst einen Event?</p>
|
|
<p>Der "St.Gallerruum" im 2.OG</p>
|
|
<p>Kann gemietet werden.</p>
|
|
<p>Reservierungen via Whatsapp</p>
|
|
<p><a href="tel:0772322770">077 232 27 70</a></p>
|
|
</div>
|
|
|
|
</div>
|
|
<div class="copyright">
|
|
© {currentYear} Gallus Pub. Alle Rechte vorbehalten.
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|