Add event detail/form components and page routes

This commit is contained in:
Denis Urs Rudolph
2026-04-03 21:26:58 +02:00
parent 71ba829d6c
commit e6430e855b
7 changed files with 410 additions and 0 deletions
@@ -0,0 +1,19 @@
import { EventDetail } from '@/components/event-detail';
interface EventPageProps {
params: Promise<{
eventId: string;
}>;
}
export default async function EventPage({ params }: EventPageProps) {
const { eventId } = await params;
return (
<div className="min-h-screen bg-gray-50 py-8">
<div className="max-w-7xl mx-auto px-4">
<EventDetail eventId={eventId} />
</div>
</div>
);
}