All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
38 lines
1.2 KiB
Plaintext
38 lines
1.2 KiB
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/events/miyuej5d-w2s9tn.jpeg",
|
|
title: "Adventskalender Flyer",
|
|
date: "2025-12-09",
|
|
description: `
|
|
Jeden Tag neue Überraschungen! Check unsere Social Media Stories!
|
|
`,
|
|
}
|
|
];
|
|
|
|
const images = [
|
|
{ src: "/static/images/gallery/miyu98xy-24n3xo.png", alt: "miyu98xy-24n3xo.png" },
|
|
{ src: "/static/images/gallery/miyu9ex6-6imbgc.png", alt: "miyu9ex6-6imbgc.png" },
|
|
{ src: "/static/images/gallery/miyu9s7x-8nsszm.png", alt: "miyu9s7x-8nsszm.png" },
|
|
{ src: "/static/images/gallery/miyu9vl2-pndg1t.png", alt: "miyu9vl2-pndg1t.png" },
|
|
{ src: "/static/images/gallery/miyu9za8-edtk3k.png", alt: "miyu9za8-edtk3k.png" }
|
|
];
|
|
---
|
|
|
|
<Layout>
|
|
<Hero id="hero" />
|
|
<Welcome id="welcome" />
|
|
<EventsGrid id="events" events={events} />
|
|
<ImageCarousel id="gallery" images={images} />
|
|
<Drinks id="drinks" />
|
|
</Layout>
|