Skip to content

Commit 9836599

Browse files
committed
Single project info section
1 parent a7aa3bf commit 9836599

File tree

1 file changed

+17
-15
lines changed

1 file changed

+17
-15
lines changed

src/components/ProjectInfo.js

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,23 @@ const ProjectInfo = () => {
1111
</p>
1212
<ul className="leading-loose">
1313
{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+
);
2931
})}
3032
</ul>
3133
</div>

0 commit comments

Comments
 (0)