Files
got-gaming/app/page.tsx
Julien Froidefond 4e6ce54e0f Init
2025-12-08 17:13:14 +01:00

14 lines
343 B
TypeScript

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>
);
}