File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change
1
+ import codeIcon from '../assets/images/icons/code.svg' ;
2
+ import toolsIcon from '../assets/images/icons/tools.svg' ;
1
3
import skills from '../data/Skills' ;
2
4
const { languages, tools } = skills ;
3
5
@@ -6,7 +8,7 @@ const LanguageAndTool = () => {
6
8
< 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" >
7
9
< 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" >
8
10
< 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 />
10
12
</ div >
11
13
< h3 className = "text-center text-3xl font-bold text-dark-900 dark:text-gray-50" >
12
14
Languages I can code
@@ -29,7 +31,7 @@ const LanguageAndTool = () => {
29
31
</ div >
30
32
< div className = "flex flex-col p-8 md:w-1/3" >
31
33
< 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 />
33
35
</ div >
34
36
< h3 className = "text-center text-3xl font-bold text-dark-900 dark:text-gray-50" >
35
37
Tools I use
You can’t perform that action at this time.
0 commit comments