reorganization of the tree structure

This commit is contained in:
2025-09-02 19:17:00 +02:00
parent cf37db8c88
commit 50485a4f55
22 changed files with 23 additions and 23 deletions
+12
View File
@@ -0,0 +1,12 @@
import "./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;