I see this error with the app, reported by NextJS, please fix it. The er
This commit is contained in:
@@ -3,7 +3,7 @@
|
|||||||
import type { FormData, BrandingSelection } from './cost-estimator-form';
|
import type { FormData, BrandingSelection } from './cost-estimator-form';
|
||||||
import { Button } from '@/components/ui/button';
|
import { Button } from '@/components/ui/button';
|
||||||
import { Card, CardContent } from '@/components/ui/card';
|
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';
|
import React, { useState, useMemo } from 'react';
|
||||||
|
|
||||||
type Step8Props = {
|
type Step8Props = {
|
||||||
@@ -15,7 +15,7 @@ type Step8Props = {
|
|||||||
|
|
||||||
const brandingOptions = [
|
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: '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: '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" /> },
|
{ id: 'none', title: "No, I'm better off without it", hours: 0, icon: <X className="h-10 w-10 text-primary" /> },
|
||||||
];
|
];
|
||||||
|
|||||||
Reference in New Issue
Block a user