JSX.Element } = {
projects: ProjectsForm,
skills: SkillsForm,
custom: CustomForm,
+ profile: ProfileForm
};
export const ResumeForm = () => {
@@ -41,7 +42,6 @@ export const ResumeForm = () => {
onMouseLeave={() => setIsHover(false)}
>
-
{formsOrder.map((form) => {
const Component = formTypeToComponent[form];
return ;
diff --git a/src/app/home/AutoTypingResume.tsx b/src/app/home/AutoTypingResume.tsx
index 1cb01256..84a5e7f1 100644
--- a/src/app/home/AutoTypingResume.tsx
+++ b/src/app/home/AutoTypingResume.tsx
@@ -74,6 +74,7 @@ export const AutoTypingResume = () => {
projects: resume.projects[0].project ? "PROJECT" : "",
skills: resume.skills.featuredSkills[0].skill ? "SKILLS" : "",
custom: "CUSTOM SECTION",
+ profile: "PROFILE"
},
}}
/>
diff --git a/src/app/lib/redux/settingsSlice.ts b/src/app/lib/redux/settingsSlice.ts
index 7e8fa83d..d03f373b 100644
--- a/src/app/lib/redux/settingsSlice.ts
+++ b/src/app/lib/redux/settingsSlice.ts
@@ -12,6 +12,7 @@ export interface Settings {
projects: boolean;
skills: boolean;
custom: boolean;
+ profile: boolean;
};
formToHeading: {
workExperiences: string;
@@ -19,6 +20,8 @@ export interface Settings {
projects: string;
skills: string;
custom: string;
+ profile: string;
+
};
formsOrder: ShowForm[];
showBulletPoints: {
@@ -52,6 +55,7 @@ export const initialSettings: Settings = {
projects: true,
skills: true,
custom: false,
+ profile: true,
},
formToHeading: {
workExperiences: "WORK EXPERIENCE",
@@ -59,8 +63,9 @@ export const initialSettings: Settings = {
projects: "PROJECT",
skills: "SKILLS",
custom: "CUSTOM SECTION",
+ profile: "Profile"
},
- formsOrder: ["workExperiences", "educations", "projects", "skills", "custom"],
+ formsOrder: ["profile","workExperiences", "educations", "projects", "skills", "custom"],
showBulletPoints: {
educations: true,
projects: true,