diff --git a/src/components/cost-estimator/step-8-branding.tsx b/src/components/cost-estimator/step-8-branding.tsx index fdf534b..493c63b 100644 --- a/src/components/cost-estimator/step-8-branding.tsx +++ b/src/components/cost-estimator/step-8-branding.tsx @@ -14,8 +14,8 @@ type Step8Props = { }; const brandingOptions = [ - { id: 'full-cycle', title: 'I need a full-cycle branding for my project', hours: 80, icon: }, - { id: 'brush-up', title: 'I need to brush up on my existing project', hours: 40, icon: }, + { id: 'full-cycle', title: 'I need a full-cycle branding for my project', hours: 70, icon: }, + { id: 'brush-up', title: 'I need to brush up on my existing project', hours: 30, icon: }, { id: 'logo-only', title: 'I just need a logo', hours: 20, icon: }, { id: 'none', title: "No, I'm better off without it", hours: 0, icon: }, ]; diff --git a/src/components/cost-estimator/step-9-results.tsx b/src/components/cost-estimator/step-9-results.tsx index 6cb979b..3cdeb16 100644 --- a/src/components/cost-estimator/step-9-results.tsx +++ b/src/components/cost-estimator/step-9-results.tsx @@ -14,7 +14,7 @@ type Step9Props = { const designHoursMap = { custom: 60, mockups: 30, existing: 0 }; const illustrationHoursMap = { '2d_static': 10, '2d_animated': 25, '3d_static': 20, '3d_animated': 40 }; -const brandingHoursMap = { 'full-cycle': 80, 'brush-up': 40, 'logo-only': 20, 'none': 0 }; +const brandingHoursMap = { 'full-cycle': 70, 'brush-up': 30, 'logo-only': 20, 'none': 0 }; export const calculateTotalHours = (formData: FormData): number => { const pageVal = formData.pageCount === 10 ? 50 : (formData.pageCount + 1) * 5 - 1;