13 lines
288 B
TypeScript
13 lines
288 B
TypeScript
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>
|
|
);
|
|
}
|
|
|