@@ -4,6 +4,7 @@ import { useRouter } from 'next/router';
44import { RecruiterPaymentContext } from '@dailydotdev/shared/src/contexts/RecruiterPaymentContext/RecruiterPaymentContext' ;
55import HeaderLogo from '@dailydotdev/shared/src/components/layout/HeaderLogo' ;
66import {
7+ CreditCardIcon ,
78 MoveToIcon ,
89 ShareIcon ,
910} from '@dailydotdev/shared/src/components/icons' ;
@@ -227,16 +228,26 @@ const RecruiterPaymentPage = (): ReactElement => {
227228 </ Typography >
228229 </ div >
229230 </ div >
230- < div className = "mt-6 flex flex-col gap-2 rounded-12 border border-border-subtlest-tertiary bg-surface-float p-4" >
231- < Typography
232- type = { TypographyType . Footnote }
233- color = { TypographyColor . Tertiary }
234- >
235- Need someone else to complete the payment?
236- </ Typography >
231+ < div className = "relative mt-6 overflow-hidden rounded-16 border-l-4 border-accent-cabbage-default bg-gradient-to-r from-action-share-float to-transparent p-4" >
232+ < div className = "flex items-center gap-4" >
233+ < div className = "flex size-12 shrink-0 items-center justify-center rounded-12 bg-action-share-float" >
234+ < CreditCardIcon className = "text-accent-cabbage-default" />
235+ </ div >
236+ < FlexCol className = "flex-1 gap-1" >
237+ < Typography type = { TypographyType . Body } bold >
238+ Need someone else to pay?
239+ </ Typography >
240+ < Typography
241+ type = { TypographyType . Footnote }
242+ color = { TypographyColor . Secondary }
243+ >
244+ Share a secure payment link with your finance team
245+ </ Typography >
246+ </ FlexCol >
247+ </ div >
237248 < Button
249+ className = "mt-4 w-full"
238250 variant = { ButtonVariant . Secondary }
239- size = { ButtonSize . Small }
240251 icon = { < ShareIcon /> }
241252 onClick = { handleSharePaymentLink }
242253 >
0 commit comments