diff --git a/frontend/src/app/payments/[registrationId]/page.tsx b/frontend/src/app/payments/[registrationId]/page.tsx new file mode 100644 index 0000000..dc842c1 --- /dev/null +++ b/frontend/src/app/payments/[registrationId]/page.tsx @@ -0,0 +1,19 @@ +import { PaymentForm } from '@/components/payment-form'; + +interface PaymentPageProps { + params: Promise<{ + registrationId: string; + }>; +} + +export default async function PaymentPage({ params }: PaymentPageProps) { + const { registrationId } = await params; + + return ( +
{announcement.content}
++ Posted by {announcement.authorName} +
+