GLobal Styling part 1

This commit is contained in:
IGNY8 VPS (Salman)
2026-01-01 14:54:27 +00:00
parent 0e57c50e56
commit e96069775c
60 changed files with 812 additions and 1712 deletions

View File

@@ -8,8 +8,7 @@
import { useState, useEffect } from 'react';
import { Link, useNavigate } from 'react-router-dom';
import { ChevronLeftIcon, EyeCloseIcon, EyeIcon } from '../../icons';
import { ChevronRight, Check } from 'lucide-react';
import { ChevronLeftIcon, EyeCloseIcon, EyeIcon, ChevronRightIcon, CheckIcon } from '../../icons';
import Label from '../form/Label';
import Input from '../form/input/InputField';
import Checkbox from '../form/input/Checkbox';
@@ -236,7 +235,7 @@ export default function SignUpFormEnhanced({ planDetails: planDetailsProp, planL
}
`}
>
{step < currentStep ? <Check className="w-5 h-5" /> : step}
{step < currentStep ? <CheckIcon className="w-5 h-5" /> : step}
</div>
<div className="ml-3">
<div className={`text-sm font-medium ${step === currentStep ? 'text-gray-900 dark:text-white' : 'text-gray-500 dark:text-gray-400'}`}>
@@ -379,7 +378,7 @@ export default function SignUpFormEnhanced({ planDetails: planDetailsProp, planL
{isPaidPlan ? (
<Button type="button" variant="primary" onClick={handleNextStep} className="w-full">
Continue to Billing
<ChevronRight className="w-4 h-4 ml-2" />
<ChevronRightIcon className="w-4 h-4 ml-2" />
</Button>
) : (
<Button type="submit" variant="primary" disabled={loading} className="w-full">
@@ -404,7 +403,7 @@ export default function SignUpFormEnhanced({ planDetails: planDetailsProp, planL
</Button>
<Button type="button" variant="primary" onClick={handleNextStep} className="flex-1">
Continue to Payment
<ChevronRight className="w-4 h-4 ml-2" />
<ChevronRightIcon className="w-4 h-4 ml-2" />
</Button>
</div>
</div>