Files
Gallus_Pub/src/pages/Gallery.astro
Kenzo fde4adfad5
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
feat: Add Banner component across Gallery, Openings, and Homepage layouts
- Integrated `Banner.astro` into `Gallery.astro`, `Openings.astro`, and `index.astro` for consistent banner display.
2025-12-22 22:57:28 +01:00

14 lines
235 B
Plaintext

---
import Layout from "../components/Layout.astro";
import Banner from "../components/Banner.astro";
---
<Layout>
<Banner />
<h1>Gallery</h1>
<p>Hier findest du alle aktuellen und kommenden Gallery im Gallus Pub.</p>
</Layout>