Registration & authorization = 10 hours

Member profiles = 20 hours

Adm
This commit is contained in:
Leon Serfaty G
2025-07-17 10:49:00 +00:00
parent 42cc907b13
commit 2ff1f5da7a
2 changed files with 26 additions and 24 deletions
@@ -1,3 +1,4 @@
"use client";
import type { FormData } from './cost-estimator-form';
@@ -16,18 +17,18 @@ 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': 70, 'brush-up': 30, 'logo-only': 20, 'none': 0 };
const featuresHoursMap: Record<string, number> = {
'registration': 40,
'member-profiles': 30,
'admin-panel': 80,
'crm-integration': 60,
'dashboard': 50,
'blog': 25,
'event-scheduling': 40,
'reservations': 40,
'chat-live-chat': 60,
'image-video-galleries': 30,
'location-based': 35,
'live-streaming': 70,
'registration': 10,
'member-profiles': 20,
'admin-panel': 28,
'crm-integration': 31,
'dashboard': 40,
'blog': 35,
'event-scheduling': 35,
'reservations': 35,
'chat-live-chat': 50,
'image-video-galleries': 5,
'location-based': 40,
'live-streaming': 55,
};