diff --git a/src/app/globals.css b/src/app/globals.css index f3e27f8..43bf576 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -23,13 +23,12 @@ --border: 226 30% 85%; --input: 226 30% 85%; --ring: 221 100% 58%; - --radius: 0.5rem; } .dark { --background: 222 47% 11%; --foreground: 0 0% 98%; - --card: 222 47% 11%; + --card: 224 35% 15%; --card-foreground: 0 0% 98%; --popover: 222 47% 11%; --popover-foreground: 0 0% 98%; @@ -43,7 +42,7 @@ --accent-foreground: 0 0% 98%; --destructive: 0 62.8% 30.6%; --destructive-foreground: 0 0% 98%; - --border: 222 25% 20%; + --border: 224 35% 20%; --input: 222 25% 20%; --ring: 221 100% 58%; } diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c296029..d6852b2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -13,7 +13,7 @@ export default function RootLayout({ children: React.ReactNode; }>) { return ( - +
diff --git a/src/components/cost-estimator/cost-estimator-form.tsx b/src/components/cost-estimator/cost-estimator-form.tsx index e6c9dd6..79605fe 100644 --- a/src/components/cost-estimator/cost-estimator-form.tsx +++ b/src/components/cost-estimator/cost-estimator-form.tsx @@ -107,8 +107,7 @@ export function CostEstimatorForm() { setCurrentStep(1); } - const estimatedHours = useMemo(() => calculateTotalHours(formData), [formData]); - + const { customHours, readyMadeHours } = useMemo(() => calculateTotalHours(formData), [formData]); const renderStep = () => { switch (currentStep) { @@ -203,9 +202,9 @@ export function CostEstimatorForm() { case 11: return (Based on your selections, here's our initial estimate.
+${estimatedCost.toLocaleString()}
-({estimatedHours}+ hours)
-Develop the project using ready-made tools
+Lower cost option using pre-built templates and components.
+{readyMadeHours}+ hours
+Custom development
+Higher cost option with fully custom design and features.
+{customHours}+ hours
+