This commit is contained in:
2026-06-09 15:15:40 +03:00
parent f6b4acb760
commit d908d83ca5
58 changed files with 4320 additions and 419 deletions
+14
View File
@@ -0,0 +1,14 @@
import prisma from "@/lib/prisma";
import EventsClient from "./EventsClient";
export default async function EventsPage() {
const events = await prisma.event.findMany({
orderBy: { date: 'asc' }
});
return (
<div className="max-w-5xl mx-auto w-full">
<EventsClient events={events} />
</div>
);
}