diff --git a/apps/web/app/partners.dub.co/(apply)/[programSlug]/apply/form.tsx b/apps/web/app/partners.dub.co/(apply)/[programSlug]/apply/form.tsx index 2d6748fcfd..f99c6ac33b 100644 --- a/apps/web/app/partners.dub.co/(apply)/[programSlug]/apply/form.tsx +++ b/apps/web/app/partners.dub.co/(apply)/[programSlug]/apply/form.tsx @@ -18,12 +18,17 @@ type FormData = { website?: string; proposal: string; comments?: string; + ageVerification: boolean; + termsAgreement: boolean; }; export function ProgramApplicationForm({ program, }: { - program: Pick; + program: Pick< + Program, + "id" | "slug" | "name" | "termsUrl" | "ageVerification" + >; }) { const { isMobile } = useMediaQuery(); const router = useRouter(); @@ -178,6 +183,50 @@ export function ProgramApplicationForm({ /> + {program.ageVerification && ( +
+ + +
+ )} + + {program.termsUrl && ( +
+ + +
+ )} +