Anpassungen damit das Navi ein OnePager wird, die verlinkung von About und Contact stimmt noch nicht.
This commit is contained in:
@ -2,6 +2,7 @@
|
||||
// src/components/EventsGrid.astro
|
||||
|
||||
import HoverCard from "./HoverCard.astro";
|
||||
|
||||
interface Event {
|
||||
image: string;
|
||||
title: string;
|
||||
|
||||
@ -6,6 +6,8 @@ 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 = [
|
||||
{
|
||||
@ -71,4 +73,6 @@ const images = [
|
||||
<EventsGrid id="events" events={events} />
|
||||
<ImageCarousel id="gallery" images={images} />
|
||||
<Drinks id="drinks" />
|
||||
<About id="about" />
|
||||
<Contact id="contact" />
|
||||
</Layout>
|
||||
|
||||
Reference in New Issue
Block a user