From 47bcbda14a9981736f5cb0c2db88832d79fb9f5c Mon Sep 17 00:00:00 2001 From: Berkeley Martinez Date: Mon, 30 Nov 2015 14:33:39 -0800 Subject: [PATCH] Update job pricing --- common/app/routes/Jobs/components/GoToPayPal.jsx | 6 +++--- common/app/routes/Jobs/components/Jobs.jsx | 2 +- common/app/routes/Jobs/components/NewJob.jsx | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/common/app/routes/Jobs/components/GoToPayPal.jsx b/common/app/routes/Jobs/components/GoToPayPal.jsx index 77a554f14a..8b2710b2a8 100644 --- a/common/app/routes/Jobs/components/GoToPayPal.jsx +++ b/common/app/routes/Jobs/components/GoToPayPal.jsx @@ -21,7 +21,7 @@ export default contain( buttonId = isHighlighted ? paypalIds.highlighted : paypalIds.regular, - price = 200, + price = 1000, discountAmount = 0, promoCode = '', promoApplied = false, @@ -92,7 +92,7 @@ export default contain( -

+ 50

+

+ 250

); @@ -214,7 +214,7 @@ export default contain(

${ - price - discountAmount + (isHighlighted ? 50 : 0) + price - discountAmount + (isHighlighted ? 250 : 0) }

diff --git a/common/app/routes/Jobs/components/Jobs.jsx b/common/app/routes/Jobs/components/Jobs.jsx index 21aa7d40f2..6b9e387134 100644 --- a/common/app/routes/Jobs/components/Jobs.jsx +++ b/common/app/routes/Jobs/components/Jobs.jsx @@ -86,7 +86,7 @@ export default contain( onClick={ ()=> { appActions.updateRoute('/jobs/new'); }}> - Post a job: $200 for 30 days + Post a job: $1000
diff --git a/common/app/routes/Jobs/components/NewJob.jsx b/common/app/routes/Jobs/components/NewJob.jsx index 2d0bd08937..c482c77094 100644 --- a/common/app/routes/Jobs/components/NewJob.jsx +++ b/common/app/routes/Jobs/components/NewJob.jsx @@ -42,7 +42,7 @@ const checkValidity = [ 'howToApply' ]; const hightlightCopy = ` -Highlight my post to make it stand out. (+$50) +Highlight my post to make it stand out. (+$250) `;