sync: Auto-sync from ACG-M-L5090 at 2026-03-10 19:11:00
Synced files: - Quote wizard frontend (all components, hooks, types, config) - API updates (config, models, routers, schemas, services) - Client work (bg-builders, gurushow) - Scripts (BGB Lesley termination, CIPP, Datto, migration) - Temp files (Bardach contacts, VWP investigation, misc) - Credentials and session logs - Email service, PHP API, session logs Machine: ACG-M-L5090 Timestamp: 2026-03-10 19:11:00 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { ChevronLeft, ChevronRight } from 'lucide-react';
|
||||
import { ChevronLeft, ChevronRight, Send } from 'lucide-react';
|
||||
import { Button } from '@/components/ui';
|
||||
|
||||
export interface WizardNavigationProps {
|
||||
@@ -21,26 +21,28 @@ export function WizardNavigation({
|
||||
isSubmitting = false,
|
||||
}: WizardNavigationProps) {
|
||||
return (
|
||||
<div className="flex items-center justify-between pt-6 mt-6 border-t border-gray-200">
|
||||
<div className="flex items-center justify-between pt-8 mt-8 border-t border-gray-100">
|
||||
<Button
|
||||
type="button"
|
||||
variant="outline"
|
||||
variant="ghost"
|
||||
onClick={onPrev}
|
||||
disabled={isFirstStep}
|
||||
className={isFirstStep ? 'invisible' : ''}
|
||||
>
|
||||
<ChevronLeft className="w-4 h-4 mr-1" />
|
||||
Previous
|
||||
<ChevronLeft className="w-4 h-4 mr-1.5" />
|
||||
Back
|
||||
</Button>
|
||||
|
||||
{isLastStep ? (
|
||||
<Button
|
||||
type="button"
|
||||
variant="primary"
|
||||
size="lg"
|
||||
onClick={onSubmit}
|
||||
isLoading={isSubmitting}
|
||||
disabled={isNextDisabled || isSubmitting}
|
||||
>
|
||||
<Send className="w-4 h-4 mr-2" />
|
||||
Get My Quote
|
||||
</Button>
|
||||
) : (
|
||||
@@ -50,8 +52,8 @@ export function WizardNavigation({
|
||||
onClick={onNext}
|
||||
disabled={isNextDisabled}
|
||||
>
|
||||
Next
|
||||
<ChevronRight className="w-4 h-4 ml-1" />
|
||||
Continue
|
||||
<ChevronRight className="w-4 h-4 ml-1.5" />
|
||||
</Button>
|
||||
)}
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user