Merge version_3 into main #4
@@ -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" },
|
||||
|
||||
Reference in New Issue
Block a user