diff --git a/app/projects/[slug]/page.tsx b/app/projects/[slug]/page.tsx index d5b0930..2f2cd5a 100644 --- a/app/projects/[slug]/page.tsx +++ b/app/projects/[slug]/page.tsx @@ -127,16 +127,30 @@ const ProjectDetail = () => { className="mb-16 rounded-2xl overflow-hidden shadow-2xl bg-stone-100 aspect-video relative" > {project.imageUrl ? ( - {project.title} + <> + {project.title} + {/* Texture/Grain Overlay */} +
+ ) : ( -
- - {project.title.charAt(0)} - +
+ {/* Mesh Gradient Fallback */} +
+
+
+ + {/* Texture/Grain Overlay */} +
+ +
+ + {project.title.charAt(0)} + +
)}