Skip to content

Commit 956a96b

Browse files
committed
feat(projects): Add DevPulse and fix URL
- Add DevPulse entry to projects array with description and github - Add DevPulse link to the footer - Comment out project avatar Image to avoid external fetch/render - Fix Samiun Nafis website URL typo (remove extra 's')
1 parent ab8c6e2 commit 956a96b

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

src/app/about/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const organizationChart = [
1414
name: "Samiun Nafis",
1515
username: "samiunnafis",
1616
bio: "UI/UX Designer",
17-
website: "https://samiunnafiss.github.io",
17+
website: "https://samiunnafis.github.io",
1818
},
1919
];
2020

src/app/components/Footer.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,14 @@ export default function Footer() {
3333
Sprint Sight
3434
</Link>
3535
</li>
36+
<li className="mb-1">
37+
<Link
38+
href="https://github.com/hallofcodes/devpulse"
39+
className="hover:underline"
40+
>
41+
Devpulse
42+
</Link>
43+
</li>
3644
</ul>
3745
</div>
3846
<div>

src/app/projects/page.tsx

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ import Image from "next/image";
22
import Link from "next/link";
33

44
const projects = [
5+
{
6+
name: "DevPulse",
7+
description:
8+
"Measure and share your coding productivity with personalized leaderboards.",
9+
github: "devpulse",
10+
},
511
{
612
name: "Sprint Sight",
713
description:
@@ -55,13 +61,13 @@ export default function Projects() {
5561
key={index}
5662
className="bg-gray-50 dark:bg-gray-800 border border-gray-200 dark:border-gray-700 rounded-lg p-8"
5763
>
58-
<Image
64+
{/*<Image
5965
src={`https://avatars.githubusercontent.com/${project.name}?s=192`}
6066
className="rounded-full mb-4"
6167
alt="Project Photo"
6268
width={192}
6369
height={192}
64-
/>
70+
/>*/}
6571
<h2 className="text-gray-900 dark:text-white text-3xl font-extrabold mb-2">
6672
{project.name}
6773
</h2>

0 commit comments

Comments
 (0)