Skip to content

Commit a84a1a4

Browse files
committed
Added proj to page
1 parent 457f486 commit a84a1a4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/components/ui/projects/ProjectList.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import projects from "@/data/projects.json";
22
import ProjectCard from "./ProjectCard";
33

4+
45
export default function ProjectList() {
56
return (
67
<div className="grid md:grid-cols-2 gap-6">
@@ -11,7 +12,7 @@ export default function ProjectList() {
1112
title: project.title,
1213
description: project.description,
1314
link: project.githubUrl || "",
14-
image: project.imageUrl
15+
image: project.imageUrl || ""
1516
}}
1617
/>
1718
))}

0 commit comments

Comments
 (0)