diff --git a/src/app/coffee/page.tsx b/src/app/coffee/page.tsx index 5d82d1c..88e5fdd 100644 --- a/src/app/coffee/page.tsx +++ b/src/app/coffee/page.tsx @@ -9,6 +9,8 @@ interface MenuItem { description: string; price: string; is_daily_special: boolean; + photos?: string[]; + featured_photo?: string | null; } const gold = '#E8A849'; @@ -107,6 +109,15 @@ export default function CoffeePage() { boxShadow: '0 1px 3px rgba(1,13,30,0.08)', }} > + {(item.photos && item.photos.length > 0) && ( +