We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 457f486 commit a84a1a4Copy full SHA for a84a1a4
src/components/ui/projects/ProjectList.tsx
@@ -1,6 +1,7 @@
1
import projects from "@/data/projects.json";
2
import ProjectCard from "./ProjectCard";
3
4
+
5
export default function ProjectList() {
6
return (
7
<div className="grid md:grid-cols-2 gap-6">
@@ -11,7 +12,7 @@ export default function ProjectList() {
11
12
title: project.title,
13
description: project.description,
14
link: project.githubUrl || "",
- image: project.imageUrl
15
+ image: project.imageUrl || ""
16
}}
17
/>
18
))}
0 commit comments