Add registration form and complete frontend integration
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
import { RegistrationForm } from '@/components/registration-form';
|
||||
|
||||
interface RegisterPageProps {
|
||||
params: Promise<{
|
||||
eventId: string;
|
||||
}>;
|
||||
}
|
||||
|
||||
export default async function RegisterPage({ params }: RegisterPageProps) {
|
||||
const { eventId } = await params;
|
||||
|
||||
return (
|
||||
<div className="min-h-screen bg-gray-50 py-8">
|
||||
<div className="max-w-4xl mx-auto px-4">
|
||||
<RegistrationForm eventId={eventId} eventName="Event" />
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user