Update events, images, and improve layout:
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.
This commit is contained in:
k
2025-08-02 14:27:11 +02:00
parent 2fab4bf70b
commit 3e93e8ce3b
13 changed files with 27 additions and 7 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 506 KiB

After

Width:  |  Height:  |  Size: 706 KiB

BIN
public/images/Event1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 626 KiB

BIN
public/images/Event2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 402 KiB

BIN
public/images/Event3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 298 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 110 KiB

After

Width:  |  Height:  |  Size: 122 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 124 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 384 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 885 KiB

View File

@ -4,7 +4,7 @@ import "../styles/components/Footer.css"
const currentYear = new Date().getFullYear(); const currentYear = new Date().getFullYear();
--- ---
<footer class="footer"> <footer class="footer" id="footer">
<div class="footer-content"> <div class="footer-content">

View File

@ -18,7 +18,7 @@ import "../styles/components/Header.css";
<a href="/#events">Events</a> <a href="/#events">Events</a>
<a href="/#gallery">Galerie</a> <a href="/#gallery">Galerie</a>
<a href="/#drinks">Drinks</a> <a href="/#drinks">Drinks</a>
<a href="/#openings">Openings</a> <a href="/#footer">Contact</a>
<!--<a href="/#about">About</a> <!--<a href="/#about">About</a>
<a href="/#contact">Contact</a>--> <a href="/#contact">Contact</a>-->
</div> </div>

View File

@ -9,7 +9,8 @@ const { id } = Astro.props;
<div class="welcome-text"> <div class="welcome-text">
<h2>Herzlich willkommen im Gallus Pub!</h2> <h2>Herzlich willkommen im</h2>
<h2>Gallus Pub!</h2>
<p> <p>
Wie die meisten bereits wissen, ist hier jeder willkommen - ob jung Wie die meisten bereits wissen, ist hier jeder willkommen - ob jung
@ -51,7 +52,7 @@ const { id } = Astro.props;
<div class="welcome-image"> <div class="welcome-image">
<img src="/images/Welcome.png" alt="Welcome backgrount image" /> <img src="/images/Welcome.png" alt="Welcome background image" />
</div> </div>
</section> </section>

View File

@ -32,7 +32,7 @@ const events = [
`, `,
}, },
{ {
image: "/images/crepes_sucette.jpg", image: "/images/Event1.png",
title: "Crepes Sucette <br /> Live Music im Gallus Pub!", title: "Crepes Sucette <br /> Live Music im Gallus Pub!",
date: "Do, 04. September 2025", date: "Do, 04. September 2025",
description: ` description: `
@ -42,7 +42,27 @@ const events = [
Jetzt reservieren: <a href="tel:+41772322770">077 232 27 70</a>`, Jetzt reservieren: <a href="tel:+41772322770">077 232 27 70</a>`,
}, },
{ {
image: "/images/kevin_mcflannigan.jpeg", image: "/images/Event3.png",
title: "Karaoke",
date: "Mittwoch - Samstag",
description: `
Bei uns gibt es Karaoke Mi-Sa!! <br>
Seid ihr eine Gruppe und lieber unter euch? ..unseren 2.Stock kannst du auch mieten ;) <br>
Reserviere am besten gleich per Whatsapp <a href="tel:+41772322770">077 232 27 70</a>
`,
},
{
image: "/images/Event2.png",
title: "Karaoke",
date: "Mittwoch - Samstag",
description: `
Bei uns gibt es Karaoke Mi-Sa!! <br>
Seid ihr eine Gruppe und lieber unter euch? ..unseren 2.Stock kannst du auch mieten ;) <br>
Reserviere am besten gleich per Whatsapp <a href="tel:+41772322770">077 232 27 70</a>
`,
},
{
image: "/images/kevin_mcflannigan.png",
title: "Kevin McFlannigan <br> Live Music im Gallus Pub!", title: "Kevin McFlannigan <br> Live Music im Gallus Pub!",
date: "Sa, 27. September 2025", date: "Sa, 27. September 2025",
description: ` description: `

View File

@ -1,4 +1,3 @@
/* === Hero === */
.hero-overlay { .hero-overlay {
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 1)), url('/images/Background.png'); background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 1)), url('/images/Background.png');
background-size: cover; background-size: cover;