Refactor event management and UI components: Update date handling in EventManagement to format dates for input, enhance EventsSection to display a message when no events are available, and improve styling in multiple components for better layout consistency.
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 3m36s

This commit is contained in:
Julien Froidefond
2025-12-18 08:08:39 +01:00
parent 91460930a4
commit a62e61a314
5 changed files with 58 additions and 29 deletions

View File

@@ -20,7 +20,7 @@ export default async function Home() {
}));
return (
<main className="min-h-screen bg-black relative">
<main className="min-h-screen relative" style={{ backgroundColor: "var(--background)" }}>
<NavigationWrapper />
<HeroSection backgroundImage={backgroundImage} />
<EventsSection events={serializedEvents} />