change some files

This commit is contained in:
2026-06-02 17:08:52 +03:30
parent b8dc1d0e1b
commit cfb48c5bb0
76 changed files with 5204 additions and 2555 deletions

View File

@@ -0,0 +1,31 @@
// education.constants.ts
import { EducationFormValues } from "../InnerEducationForm";
import { DegreeValue} from "../types";
export const EDUCATION_EMPTY_VALUES: EducationFormValues = {
education: [
{
degree: "",
field: "",
university: "",
startYear: "",
endYear: "",
gpa: "",
certificateImageId: "",
description: "",
},
],
}
export const DEGREE_OPTIONS: Exclude<DegreeValue, "">[] = [
"زیر دیپلم",
"دیپلم",
"کاردانی",
"کارشناسی",
"کارشناسی ارشد",
"دکتری",
"حوزوی",
"سایر",
];