Merge version_3 into main #4

Merged
bender merged 1 commits from version_3 into main 2026-05-18 09:51:42 +00:00

View File

@@ -13,6 +13,14 @@ import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
export default function LandingPage() {
const scrollToSection = (id: string) => {
const sectionId = id.startsWith('#') ? id : `#${id}`;
const element = document.querySelector(sectionId);
if (element) {
element.scrollIntoView({ behavior: 'smooth' });
}
};
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
@@ -37,7 +45,7 @@ export default function LandingPage() {
{ name: "Contact", id: "contact" }
]}
brandName="The Lamb House"
button={{ text: "View Menu", href: "#menu" }}
button={{ text: "View Menu", onClick: () => scrollToSection("menu") }}
/>
</div>
@@ -45,7 +53,7 @@ export default function LandingPage() {
<HeroCarouselLogo
logoText="The Lamb House"
description="Authentic flavors of Afghanistan and Pakistan in the heart of Lahore. Experience tender lamb roasts and legendary Shinwari Karahi."
buttons={[{ text: "View Menu", href: "#menu" }]}
buttons={[{ text: "View Menu", onClick: () => scrollToSection("menu") }]}
slides={[
{ imageSrc: "http://img.b2bpic.net/free-photo/smoked-pork-leg-served-restaurant-food-tasty-hunger-eating-concept_7502-5465.jpg", imageAlt: "Traditional Lamb Roast" },
{ imageSrc: "http://img.b2bpic.net/free-photo/tava-kebab-barbeque-pottery-pan_114579-2183.jpg", imageAlt: "Shinwari Karahi" },