This commit is contained in:
Julien Froidefond
2025-12-08 17:13:14 +01:00
commit 4e6ce54e0f
23 changed files with 2131 additions and 0 deletions

12
app/events/page.tsx Normal file
View File

@@ -0,0 +1,12 @@
import Navigation from "@/components/Navigation";
import EventsPageSection from "@/components/EventsPageSection";
export default function EventsPage() {
return (
<main className="min-h-screen bg-black relative">
<Navigation />
<EventsPageSection />
</main>
);
}