All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
27 lines
728 B
Plaintext
27 lines
728 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 = [
|
|
|
|
];
|
|
|
|
const images = [
|
|
{ src: "/static/images/gallery/miyupfov-hkjb08.png", alt: "miyupfov-hkjb08.png" }
|
|
];
|
|
---
|
|
|
|
<Layout>
|
|
<Hero id="hero" />
|
|
<Welcome id="welcome" />
|
|
<EventsGrid id="events" events={events} />
|
|
<ImageCarousel id="gallery" images={images} />
|
|
<Drinks id="drinks" />
|
|
</Layout>
|