// AcademicDetailsStep.tsx 'use client'; import { FormField, FormItem, FormLabel, FormControl, FormMessage } from '@workspace/ui/components/form'; import { Select, SelectTrigger, SelectValue, SelectContent, SelectItem } from '@workspace/ui/components/select'; import { Input } from '@workspace/ui/components/input'; import { Separator } from '@workspace/ui/components/separator'; export default function AcademicDetailsStep({ form }: { form: any }) { const degreeOptions = [ { value: 'btech', label: 'B.Tech' }, { value: 'be', label: 'B.E.' }, { value: 'bsc', label: 'B.Sc' }, { value: 'bca', label: 'BCA' }, ]; const yearOptions = [ { value: '2024', label: '2024' }, { value: '2025', label: '2025' }, { value: '2026', label: '2026' }, { value: '2027', label: '2027' }, ]; const branchOptions = [ { value: 'cse', label: 'Computer Engineering' }, { value: 'it', label: 'Information Technology' }, { value: 'ece', label: 'Electronics & Communication' }, { value: 'mechanical', label: 'Mechanical' }, ]; return (

Academic Details

( Degree * )} /> ( Year * )} /> ( Branch * )} />
( SSC % * field.onChange(parseFloat(e.target.value) || 0)} /> )} /> ( {form.watch('isDiploma') ? 'Diploma % *' : 'HSC % *'} field.onChange(parseFloat(e.target.value) || 0)} /> )} /> ( field.onChange(e.target.checked)} /> Diploma Holder? )} />
); }