Skip to content

Commit ad921bd

Browse files
committed
fix: no icons in skills
1 parent 579c7de commit ad921bd

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/components/LanguageAndTool.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import codeIcon from '../assets/images/icons/code.svg';
2+
import toolsIcon from '../assets/images/icons/tools.svg';
13
import skills from '../data/Skills';
24
const { languages, tools } = skills;
35

@@ -6,7 +8,7 @@ const LanguageAndTool = () => {
68
<div className="mx-auto -mt-20 flex w-full flex-col overflow-hidden rounded-3xl bg-white shadow-lg dark:bg-dark-700 md:w-[90%] md:flex-row">
79
<div className="flex flex-col border-b-2 border-dashed border-dark-500 p-8 md:w-2/3 md:border-b-0 md:border-r-2">
810
<div className="mx-auto mb-8 h-24 w-24 rounded-full bg-blue-300 p-4">
9-
<img src="/src/assets/images/icons/code.svg" alt="" aria-hidden />
11+
<img src={codeIcon} alt="" aria-hidden />
1012
</div>
1113
<h3 className="text-center text-3xl font-bold text-dark-900 dark:text-gray-50">
1214
Languages I can code
@@ -29,7 +31,7 @@ const LanguageAndTool = () => {
2931
</div>
3032
<div className="flex flex-col p-8 md:w-1/3">
3133
<div className="mx-auto mb-8 h-24 w-24 rounded-full bg-blue-300 p-4">
32-
<img src="/src/assets/images/icons/tools.svg" alt="" aria-hidden />
34+
<img src={toolsIcon} alt="" aria-hidden />
3335
</div>
3436
<h3 className="text-center text-3xl font-bold text-dark-900 dark:text-gray-50">
3537
Tools I use

0 commit comments

Comments
 (0)