add of skill card

This commit is contained in:
2025-08-21 11:28:21 +02:00
parent 31f78e4b11
commit b3fa402f7b
2 changed files with 36 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import "../styles/SkillCard.css";
function SkillCard({ text }) {
return (
<div className="skill-card">
<img src={`/assets/images/skills/${text}.svg`} alt={text} />
<p>{text}</p>
</div>
);
}
export default SkillCard;