-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
67d88b4
commit 1365b26
Showing
5 changed files
with
96 additions
and
2 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import { softskills } from "../../data/softskills"; | ||
|
||
const SoftSkillCard = () => { | ||
return ( | ||
<div className="my-4 md:grid md:grid-cols-3 md:gap-3"> | ||
{softskills.map((skill) => { | ||
return ( | ||
<div | ||
key={skill.id} | ||
className="py-2 flex justify-center items-center gap-3" | ||
> | ||
<div className={skill.css}>{skill.pic}</div> | ||
<div>{skill.content}</div> | ||
</div> | ||
); | ||
})} | ||
</div> | ||
); | ||
}; | ||
|
||
export default SoftSkillCard; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import React from "react"; | ||
import TitleStyle from "../UI/TitleStyle"; | ||
import SoftSkillCard from "./SoftSkillCard"; | ||
|
||
const SoftSkills = () => { | ||
return ( | ||
<div> | ||
<TitleStyle title="Soft Skills" /> | ||
<SoftSkillCard /> | ||
</div> | ||
); | ||
}; | ||
|
||
export default SoftSkills; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
import { GoOrganization } from "react-icons/go"; | ||
import { HiQuestionMarkCircle } from "react-icons/hi2"; | ||
import { FaLightbulb } from "react-icons/fa"; | ||
import { TbListDetails } from "react-icons/tb"; | ||
import { FaClock } from "react-icons/fa"; | ||
import { SiMinds } from "react-icons/si"; | ||
|
||
export const softskills = [ | ||
{ | ||
id: "comm", | ||
content: "Communication", | ||
pic: <GoOrganization />, | ||
css: "text-lg text-green-300", | ||
}, | ||
{ | ||
id: "problem_solving", | ||
content: "Problem-Solving", | ||
pic: <HiQuestionMarkCircle />, | ||
css: "text-xl text-purple-300", | ||
}, | ||
{ | ||
id: "creative", | ||
content: "Creativity", | ||
pic: <FaLightbulb />, | ||
css: "text-lg text-amber-300", | ||
}, | ||
{ | ||
id: "self_mot", | ||
content: "Self Motivation", | ||
pic: ( | ||
<img | ||
alt="self_mot" | ||
src="./self_motivation.png" | ||
className="w-9 h-8 m-0 p-0" | ||
/> | ||
), | ||
css: "text-2xl text-blue-200", | ||
}, | ||
{ | ||
id: "attention", | ||
content: "Attention to Detail", | ||
pic: <TbListDetails />, | ||
css: "text-lg text-blue-200", | ||
}, | ||
{ | ||
id: "time", | ||
content: "Time Management", | ||
pic: <FaClock />, | ||
css: "text-lg text-red-200", | ||
}, | ||
{ | ||
id: "mind", | ||
content: "Open Minded", | ||
pic: <SiMinds />, | ||
css: "text-2xl text-yellow-200", | ||
}, | ||
]; |