All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
35 lines
924 B
Plaintext
35 lines
924 B
Plaintext
---
|
|
import Layout from "../components/Layout.astro";
|
|
import Hero from "../components/Hero.astro";
|
|
import Welcome from "../components/Welcome.astro";
|
|
import EventsGrid from "../components/EventsGrid.astro";
|
|
import Drinks from "../components/Drinks.astro";
|
|
import ImageCarousel from "../components/ImageCarousel.astro";
|
|
import Contact from "../components/Contact.astro";
|
|
import About from "../components/About.astro";
|
|
|
|
const events = [
|
|
{
|
|
image: "/static/images/gallery/miyrhqng-i2kgtx.webp",
|
|
title: "test",
|
|
date: "2025-12-07",
|
|
description: `
|
|
test
|
|
`,
|
|
}
|
|
];
|
|
|
|
const images = [
|
|
{ src: "/static/images/gallery/miyma9zc-8he1di.webp", alt: "Schwarzes bild" },
|
|
{ src: "/static/images/gallery/miyrhqng-i2kgtx.webp", alt: "test" }
|
|
];
|
|
---
|
|
|
|
<Layout>
|
|
<Hero id="hero" />
|
|
<Welcome id="welcome" />
|
|
<EventsGrid id="events" events={events} />
|
|
<ImageCarousel id="gallery" images={images} />
|
|
<Drinks id="drinks" />
|
|
</Layout>
|