From 2c54a3c15854ee9ac8c0518d72db80ff8616aaeb Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 12:00:49 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 174 +++++++++++++++++++++++------------------------ 1 file changed, 85 insertions(+), 89 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 559d801..d0324fb 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -4,20 +4,18 @@ import ReactLenis, { useLenis } from "lenis/react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; import HeroSplitDoubleCarousel from "@/components/sections/hero/HeroSplitDoubleCarousel"; -import FeatureBento from "@/components/sections/feature/FeatureBento"; -import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen"; +import ProductCardThree from "@/components/sections/product/ProductCardThree"; import PricingCardFive from "@/components/sections/pricing/PricingCardFive"; import FaqBase from "@/components/sections/faq/FaqBase"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterBase from "@/components/sections/footer/FooterBase"; import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve"; -import { Sparkles, Utensils, Award, Smile, Star } from "lucide-react"; +import { Sparkles, Award, Star, Utensils } from "lucide-react"; export default function BuffetPage() { const lenis = useLenis(); const handleScroll = (id: string) => { - if (!id) return; const targetId = id.replace(/^#+/, ""); const element = document.getElementById(targetId); if (element && lenis) { @@ -57,95 +55,93 @@ export default function BuffetPage() { onClick: () => handleScroll("#contact") }} /> -
handleScroll("#contact") }, - { text: "View Menu", onClick: () => handleScroll("#menu") }, - ]} - buttonAnimation="slide-up" - carouselPosition="right" - leftCarouselItems={[ - { imageSrc: "http://img.b2bpic.net/free-photo/sushi-with-variety-fish-delivery-sushi-package-different-types-rolls_132075-14235.jpg", imageAlt: "Freshly prepared sushi rolls" }, - { imageSrc: "http://img.b2bpic.net/free-photo/crawfish-plate_23-2150346588.jpg", imageAlt: "Premium crab and shrimp" }, - { imageSrc: "http://img.b2bpic.net/free-photo/square-slice-chocolate-cheesecake_114579-16589.jpg", imageAlt: "Decadent dessert selection" }, - ]} - rightCarouselItems={[ - { imageSrc: "http://img.b2bpic.net/free-photo/life-style_1122-1851.jpg", imageAlt: "Family dining atmosphere" }, - { imageSrc: "http://img.b2bpic.net/free-photo/waiter-carries-dish-with-snacks-walking-backyard_8353-9017.jpg", imageAlt: "Live refill stations" }, - { imageSrc: "http://img.b2bpic.net/free-photo/male-chef-kitchen-cooking_23-2148934672.jpg", imageAlt: "Chef at work" }, - ]} - carouselItemClassName="!aspect-[4/5]" - />
- -
handleScroll("#contact") }, features: ["All Lunch Stations", "Soft Drinks", "Fresh Sushi Bar"] }, - { id: "dinner", period: "per person", featuresTitle: "Dinner Amenities", tag: "Premium Choice", tagIcon: Award, price: "$29.99", description: "Complete dinner experience with full seafood bar.", button: { text: "Reserve Dinner", onClick: () => handleScroll("#contact") }, features: ["All Lunch Features", "Premium Crab Legs", "Chef Specials"] } - ]} - />
-
- +
+ handleScroll("#contact") }, + { text: "View Menu", onClick: () => handleScroll("#menu") }, + ]} + buttonAnimation="slide-up" + carouselPosition="right" + leftCarouselItems={[ + { imageSrc: "http://img.b2bpic.net/free-photo/sushi-with-variety-fish-delivery-sushi-package-different-types-rolls_132075-14235.jpg", imageAlt: "Freshly prepared sushi rolls" }, + { imageSrc: "http://img.b2bpic.net/free-photo/crawfish-plate_23-2150346588.jpg", imageAlt: "Premium crab and shrimp" }, + { imageSrc: "http://img.b2bpic.net/free-photo/square-slice-chocolate-cheesecake_114579-16589.jpg", imageAlt: "Decadent dessert selection" }, + ]} + rightCarouselItems={[ + { imageSrc: "http://img.b2bpic.net/free-photo/life-style_1122-1851.jpg", imageAlt: "Family dining atmosphere" }, + { imageSrc: "http://img.b2bpic.net/free-photo/waiter-carries-dish-with-snacks-walking-backyard_8353-9017.jpg", imageAlt: "Live refill stations" }, + { imageSrc: "http://img.b2bpic.net/free-photo/male-chef-kitchen-cooking_23-2148934672.jpg", imageAlt: "Chef at work" }, + ]} + carouselItemClassName="!aspect-[4/5]" + /> +
+ + + +
+ handleScroll("#contact") }, features: ["All Lunch Stations", "Soft Drinks", "Fresh Sushi Bar"] }, + { id: "dinner", period: "per person", featuresTitle: "Dinner Amenities", tag: "Premium Choice", tagIcon: Award, price: "$29.99", button: { text: "Reserve Dinner", onClick: () => handleScroll("#contact") }, features: ["All Lunch Features", "Premium Crab Legs", "Chef Specials"] } + ]} + /> +
+ +
+ +
+ -
handleScroll("#contact") } - ]} - buttonAnimation="slide-up" - useInvertedBackground={false} - />
+ +
+ handleScroll("#contact") }]} + /> +
+ ); -} \ No newline at end of file +} -- 2.49.1