Open pingSubhajit opened 1 month ago
This issue focuses on implementing the "Skills" section within the default resume theme. This section will display the user's skills, categorized if necessary, to highlight their expertise. **Success Criteria:** * The "Skills" section is a reusable component that can be integrated into the default resume theme. * The section displays the user's skills in a visually appealing and organized manner, allowing for optional categorization. **Acceptance Criteria:** * The "Skills" section accepts an array of skill objects as a prop. Each skill object should contain the following fields: * `name`: (required) The name of the skill. * `category`: (optional) The category to which the skill belongs. * `proficiency`: The user's proficiency level of that skill * The section renders each skill with the following structure: * **Skill Name:** Displayed prominently. * **Category:** (optional) The category to which the skill belongs, displayed next to or below the skill name. * **Proficiency:** Displayed along with the name of the skill * The section provides options for organizing skills: * **Categorization:** Allow users to group skills into categories (e.g., "Technical Skills," "Soft Skills," "Languages"). * The section uses consistent styling and layout, aligning with the overall design of the default resume theme. * The section is responsive and adapts well to different screen sizes. * The component is thoroughly tested and works without errors. This implementation of the "Skills" section will allow users to effectively present their skills and expertise in a clear and organized way.
This issue focuses on implementing the "Skills" section within the default resume theme. This section will display the user's skills, categorized if necessary, to highlight their expertise.
Success Criteria:
Acceptance Criteria:
name
: (required) The name of the skill.category
: (optional) The category to which the skill belongs.proficiency
: The user's proficiency level of that skillThis implementation of the "Skills" section will allow users to effectively present their skills and expertise in a clear and organized way.