File tree Expand file tree Collapse file tree 1 file changed +17
-15
lines changed Expand file tree Collapse file tree 1 file changed +17
-15
lines changed Original file line number Diff line number Diff line change @@ -11,21 +11,23 @@ const ProjectInfo = () => {
11
11
</ p >
12
12
< ul className = "leading-loose" >
13
13
{ ProjectsData . CompanyInfo . map ( ( info ) => {
14
- < li className = "text-ternary-dark dark:text-ternary-light" >
15
- < span > { info . title } : </ span >
16
- < a
17
- href = "#"
18
- className = {
19
- info . title == 'Website' ||
20
- info . title == 'Phone'
21
- ? 'hover:underline cursor-pointer'
22
- : ''
23
- }
24
- aria-label = "Project Webiste and Phone"
25
- >
26
- { info . details }
27
- </ a >
28
- </ li > ;
14
+ return (
15
+ < li className = "text-ternary-dark dark:text-ternary-light" >
16
+ < span > { info . title } : </ span >
17
+ < a
18
+ href = "https://stoman.me"
19
+ className = {
20
+ info . title == 'Website' ||
21
+ info . title == 'Phone'
22
+ ? 'hover:underline cursor-pointer'
23
+ : ''
24
+ }
25
+ aria-label = "Project Webiste and Phone"
26
+ >
27
+ { info . details }
28
+ </ a >
29
+ </ li >
30
+ ) ;
29
31
} ) }
30
32
</ ul >
31
33
</ div >
You can’t perform that action at this time.
0 commit comments