All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
- **Events update**: Replaced existing events with new details and images. - **Image updates**: Replaced outdated images with optimized ones (e.g., `Event1.png`, `Event2.png`, `Event3.png`). - **Footer improvements**: Added `id` to enable smooth scrolling for "Contact". - **Welcome section**: Adjusted heading structure for better readability. - **Navigation fix**: Replaced "Openings" link with "Contact". - **CSS cleanup**: Removed redundant comment in `Hero.css` and fixed typos in alt text.
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" id="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><a href="tel:0772322770">077 232 27 70</a></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>
|
|
</div>
|
|
</div>
|
|
<div class="copyright">
|
|
© {currentYear} Gallus Pub. Alle Rechte vorbehalten.
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|