29 lines
938 B
TypeScript
29 lines
938 B
TypeScript
import NavigationWrapper from "@/components/NavigationWrapper";
|
|
import HeroSection from "@/components/HeroSection";
|
|
import EventsSection from "@/components/EventsSection";
|
|
import { eventService } from "@/services/events/event.service";
|
|
import { getBackgroundImage } from "@/lib/preferences";
|
|
|
|
export const dynamic = "force-dynamic";
|
|
|
|
export default async function Home() {
|
|
const events = await eventService.getUpcomingEvents(3);
|
|
|
|
// Convert Date objects to strings for serialization
|
|
const serializedEvents = events.map((event) => ({
|
|
...event,
|
|
date: event.date.toISOString(),
|
|
}));
|
|
|
|
// Récupérer l'image de fond côté serveur
|
|
const backgroundImage = await getBackgroundImage("home", "/got-2.jpg");
|
|
|
|
return (
|
|
<main className="min-h-screen bg-black relative">
|
|
<NavigationWrapper />
|
|
<HeroSection backgroundImage={backgroundImage} />
|
|
<EventsSection events={serializedEvents} />
|
|
</main>
|
|
);
|
|
}
|