From 40e9a257f74cb9d6b48a0b9e62773bef48dba944 Mon Sep 17 00:00:00 2001 From: Matt Date: Mon, 6 Apr 2026 16:46:21 -0400 Subject: [PATCH] feat: add hero background images to case study detail pages Each project page now has its image behind the hero text with a dark gradient overlay for readability. Tags use a glass-morphism style on the image background. Co-Authored-By: Claude Opus 4.6 (1M context) --- .../(frontend)/[locale]/work/[slug]/page.tsx | 36 ++++++++++++++----- 1 file changed, 28 insertions(+), 8 deletions(-) diff --git a/src/app/(frontend)/[locale]/work/[slug]/page.tsx b/src/app/(frontend)/[locale]/work/[slug]/page.tsx index 3370fd6..74835e0 100644 --- a/src/app/(frontend)/[locale]/work/[slug]/page.tsx +++ b/src/app/(frontend)/[locale]/work/[slug]/page.tsx @@ -1,3 +1,4 @@ +import Image from 'next/image'; import { notFound } from 'next/navigation'; import { setRequestLocale } from 'next-intl/server'; import { routing } from '@/i18n/routing'; @@ -17,6 +18,7 @@ interface Project { outcome: string; techStack: string[]; tags: string[]; + image: string; } // ─── Data (will come from Payload CMS) ──────────────────────────────────────── @@ -35,6 +37,7 @@ const PROJECTS: Record = { "The platform processed over 200 submissions in its first season, reducing judge workload by 40% through AI-assisted pre-screening. The client praised the system's reliability and the elegance of its interface.", techStack: ['Next.js', 'PostgreSQL', 'OpenAI API', 'Docker', 'Private Cloud'], tags: ['AI Integration', 'Platform'], + image: '/images/monaco_high_res.jpg', }, 'port-nimara': { title: 'Port Nimara', @@ -48,6 +51,7 @@ const PROJECTS: Record = { 'The new platform increased online berth inquiries by 3x and provided the port authority with real-time content management capabilities they previously lacked.', techStack: ['Nuxt.js', 'Directus CMS', 'Node.js', 'Docker'], tags: ['Website', 'Infrastructure'], + image: '/images/anguilla.png', }, 'port-amador': { title: 'Port Amador', @@ -61,6 +65,7 @@ const PROJECTS: Record = { "The redesigned platform elevated Port Amador's digital presence to match their premium positioning, with a 60% improvement in page load times and significantly increased organic traffic.", techStack: ['Next.js', 'Tailwind CSS', 'Framer Motion', 'Vercel'], tags: ['Website', 'Infrastructure'], + image: '/images/panama.png', }, }; @@ -123,38 +128,53 @@ export default async function CaseStudyPage({ params }: Props) {
{/* ── Hero ── */} -
-
-
+
+ {/* Background image */} + + {/* Dark overlay for text readability */} +
+ +
+
{/* Tags */}
{project.tags.map((tag) => ( - + {tag} - + ))}
{/* Title */} -

+

{project.title}

{/* Subtitle */} -

+

{project.subtitle}

{/* Description */} -

+

{project.description}