From fcef486c2e8c94a2f239f87818054371014b19cd Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 20:06:49 +0000 Subject: [PATCH 1/2] Update src/app/menu/page.tsx --- src/app/menu/page.tsx | 51 ++++++++++++++++++++++++++++--------------- 1 file changed, 33 insertions(+), 18 deletions(-) diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index fa582ed..9b41da6 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -51,15 +51,15 @@ export default function MenuPage() { return ( @@ -171,6 +187,16 @@ export default function HomePage() { }, ]} carouselMode="buttons" + containerClassName="px-4 sm:px-6 md:px-8 py-8 sm:py-12 md:py-16" + textBoxClassName="mb-8 sm:mb-12" + textBoxTitleClassName="text-3xl sm:text-4xl md:text-5xl" + textBoxDescriptionClassName="text-base sm:text-lg mt-3 sm:mt-4" + gridClassName="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-4 sm:gap-6 md:gap-8" + cardClassName="rounded-lg overflow-hidden" + mediaClassName="w-full h-48 sm:h-56 md:h-64 object-cover" + cardTitleClassName="text-lg sm:text-xl font-semibold mt-3 sm:mt-4" + tagsContainerClassName="flex flex-wrap gap-2 mt-2 sm:mt-3" + tagClassName="text-xs sm:text-sm px-2 sm:px-3 py-1 rounded" /> @@ -194,13 +220,25 @@ export default function HomePage() { id: "4", title: "Amazing Healthy Meals", quote: "Perfect for post-workout nutrition. The wraps are filling, the smoothies are refreshing, and everything tastes premium.", name: "David K.", role: "Active Lifestyle", imageSrc: "http://img.b2bpic.net/free-photo/middle-age-businessman-smiling-happy-standing-city_839833-25759.jpg", imageAlt: "David, active lifestyle customer" }, ]} + containerClassName="px-4 sm:px-6 md:px-8 py-8 sm:py-12 md:py-16" + textBoxClassName="mb-8 sm:mb-12" + textBoxTitleClassName="text-3xl sm:text-4xl md:text-5xl" + textBoxDescriptionClassName="text-base sm:text-lg mt-3 sm:mt-4" + contentClassName="space-y-4 sm:space-y-6" + quoteCardClassName="rounded-lg p-4 sm:p-6 md:p-8" + testimonialTitleClassName="text-lg sm:text-xl font-semibold" + quoteClassName="text-base sm:text-lg italic mt-3 sm:mt-4" + nameClassName="text-sm sm:text-base font-semibold mt-4 sm:mt-6" + roleClassName="text-xs sm:text-sm mt-1" + mediaCardClassName="rounded-lg overflow-hidden mb-3 sm:mb-4" + mediaClassName="w-12 h-12 sm:w-14 sm:h-14 md:w-16 md:h-16 object-cover" />
@@ -237,6 +282,14 @@ export default function HomePage() { inputPlaceholder="Enter your email for updates" buttonText="Start Ordering" termsText="By ordering, you agree to our Terms and Conditions." + containerClassName="px-4 sm:px-6 md:px-8 py-8 sm:py-12 md:py-16" + contentClassName="grid grid-cols-1 md:grid-cols-2 gap-8 sm:gap-12 items-center" + contactFormClassName="space-y-6 sm:space-y-8" + titleClassName="text-3xl sm:text-4xl md:text-5xl" + descriptionClassName="text-base sm:text-lg mt-3 sm:mt-4" + formWrapperClassName="mt-6 sm:mt-8" + mediaWrapperClassName="mt-8 sm:mt-12 md:mt-0" + mediaClassName="w-full h-64 sm:h-80 md:h-96 object-cover rounded-lg" /> @@ -245,6 +298,10 @@ export default function HomePage() { columns={footerColumns} bottomLeftText="© 2024 Get Fruity Cafe. All rights reserved." bottomRightText="Privacy Policy | Terms of Service" + containerClassName="px-4 sm:px-6 md:px-8 py-8 sm:py-12 md:py-16" + columnsClassName="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6 sm:gap-8 md:gap-12" + columnTitleClassName="text-base sm:text-lg font-semibold" + columnItemClassName="text-sm sm:text-base mt-2 sm:mt-3" />
-- 2.49.1