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

13
app/page.tsx Normal file
View File

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