I see this error with the app, reported by NextJS, please fix it. The er

This commit is contained in:
Leon Serfaty G
2025-07-17 10:37:44 +00:00
parent 4d5469fd8e
commit 6b0abfe99f
@@ -3,7 +3,7 @@
import type { FormData, BrandingSelection } from './cost-estimator-form';
import { Button } from '@/components/ui/button';
import { Card, CardContent } from '@/components/ui/card';
import { Gauge, Compass, PaintBrush, Zap, X } from 'lucide-react';
import { Gauge, Compass, Paintbrush, Zap, X } from 'lucide-react';
import React, { useState, useMemo } from 'react';
type Step8Props = {
@@ -15,7 +15,7 @@ type Step8Props = {
const brandingOptions = [
{ id: 'full-cycle', title: 'I need a full-cycle branding for my project', hours: 80, icon: <Compass className="h-10 w-10 text-primary" /> },
{ id: 'brush-up', title: 'I need to brush up on my existing project', hours: 40, icon: <PaintBrush className="h-10 w-10 text-primary" /> },
{ id: 'brush-up', title: 'I need to brush up on my existing project', hours: 40, icon: <Paintbrush className="h-10 w-10 text-primary" /> },
{ id: 'logo-only', title: 'I just need a logo', hours: 20, icon: <Zap className="h-10 w-10 text-primary" /> },
{ id: 'none', title: "No, I'm better off without it", hours: 0, icon: <X className="h-10 w-10 text-primary" /> },
];