From 24ad7ca9d81aed15c2e1b18369b759929cf8f77c Mon Sep 17 00:00:00 2001 From: denshooter Date: Sat, 10 Jan 2026 01:27:51 +0100 Subject: [PATCH] style: apply mesh gradient and texture to project detail page fallback --- app/projects/[slug]/page.tsx | 32 +++++++++++++++++++++++--------- 1 file changed, 23 insertions(+), 9 deletions(-) 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)} + +
)}