Update src/app/menu/page.tsx

This commit is contained in:
2026-03-14 06:49:35 +00:00
parent d2af414492
commit f80f4ea286

View File

@@ -56,7 +56,7 @@ export default function MenuPage() {
handle: "@urthcoffee",
testimonial: "This month we're featuring our new seasonal Maple Lavender Latte. Handcrafted with local maple syrup and sustainable ingredients.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/man-apron-working-coffee-machine_23-2148366642.jpg?_wi=2",
imageSrc: "http://img.b2bpic.net/free-photo/man-apron-working-coffee-machine_23-2148366642.jpg",
imageAlt: "Chef's pick seasonal drink"
},
{
@@ -64,7 +64,7 @@ export default function MenuPage() {
handle: "@regulars",
testimonial: "Our signature cold brew has been perfected over years. Smooth, bold, and perfectly chilled every single time.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/buns-raisins-near-hot-drinks_23-2147869639.jpg?_wi=2",
imageSrc: "http://img.b2bpic.net/free-photo/buns-raisins-near-hot-drinks_23-2147869639.jpg",
imageAlt: "Cold brew customer favorite"
},
{
@@ -72,7 +72,7 @@ export default function MenuPage() {
handle: "@bakedaily",
testimonial: "Fresh pastries baked on-site every morning using European-style techniques and premium ingredients.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/delicious-french-breakfast-with-croissant_23-2150408519.jpg?_wi=2",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-french-breakfast-with-croissant_23-2150408519.jpg",
imageAlt: "Fresh baked croissant"
}
]}
@@ -100,29 +100,29 @@ export default function MenuPage() {
id: 1,
title: "Espresso Drinks",
description: "Lattes, cappuccinos, americanos, and specialty drinks made with premium espresso and locally-sourced milk alternatives.",
imageSrc: "http://img.b2bpic.net/free-photo/man-apron-working-coffee-machine_23-2148366642.jpg?_wi=3",
imageSrc: "http://img.b2bpic.net/free-photo/man-apron-working-coffee-machine_23-2148366642.jpg",
imageAlt: "Espresso drinks selection"
},
{
id: 2,
title: "Cold Beverages",
description: "Refreshing iced coffee, cold brew, iced teas, and seasonal cold drinks. Perfect for warm days and outdoor seating.",
imageSrc: "http://img.b2bpic.net/free-photo/buns-raisins-near-hot-drinks_23-2147869639.jpg?_wi=3",
imageSrc: "http://img.b2bpic.net/free-photo/buns-raisins-near-hot-drinks_23-2147869639.jpg",
imageAlt: "Cold beverage selection"
},
{
id: 3,
title: "Fresh Pastries",
description: "Daily-baked croissants, scones, muffins, and seasonal items. All made fresh with premium ingredients and zero preservatives.",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-french-breakfast-with-croissant_23-2150408519.jpg?_wi=3",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-french-breakfast-with-croissant_23-2150408519.jpg",
imageAlt: "Fresh pastry selection"
}
]}
textboxLayout="default"
useInvertedBackground={false}
containerClassName="gap-8"
titleClassName="text-4xl md:text-5xl font-bold"
descriptionClassName="text-base text-slate-600 max-w-2xl"
cardTitleClassName="text-4xl md:text-5xl font-bold"
cardDescriptionClassName="text-base text-slate-600 max-w-2xl"
/>
</div>