Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 92454b9e11 | |||
| b0a771ea27 | |||
| d01085d1c5 | |||
| c8c9962547 | |||
| 9ee8600dec |
@@ -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" },
|
||||
@@ -100,12 +108,12 @@ export default function LandingPage() {
|
||||
gridVariant="two-columns-alternating-heights"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "p1", name: "Mutton Leg Roast", price: "Rs 3,500", imageSrc: "http://img.b2bpic.net/free-photo/top-view-potato-pies-with-mushed-pumpkin-its-seeds-dark-grey-background-bake-oven-cake-color-pie_140725-121443.jpg" },
|
||||
{ id: "p2", name: "Chicken Tikka Platter", price: "Rs 1,500", imageSrc: "http://img.b2bpic.net/free-photo/top-view-chicken-skewers-parchment-paper-with-cherry-tomatoes_23-2148699118.jpg" },
|
||||
{ id: "p3", name: "Grilled Fish", price: "Rs 2,200", imageSrc: "http://img.b2bpic.net/free-photo/scrimps-onion-rings-served-with-sauce-lemon_140725-8051.jpg" },
|
||||
{ id: "p4", name: "Lamb Karahi", price: "Rs 2,800", imageSrc: "http://img.b2bpic.net/free-photo/three-assorted-steamed-bao-buns-dark-serving-board_84443-85725.jpg" },
|
||||
{ id: "p5", name: "Seekh Kebab", price: "Rs 900", imageSrc: "http://img.b2bpic.net/free-photo/baked-clam-with-garlic-butter-served-with-garlic-bread-dark-background_1150-45279.jpg" },
|
||||
{ id: "p6", name: "Fried Fish", price: "Rs 2,000", imageSrc: "http://img.b2bpic.net/free-photo/taco-with-prawn-shrimp-sauce_74190-6007.jpg" }
|
||||
{ id: "p1", name: "Mutton Leg Roast", price: "Rs 4,500", imageSrc: "http://img.b2bpic.net/free-photo/top-view-potato-pies-with-mushed-pumpkin-its-seeds-dark-grey-background-bake-oven-cake-color-pie_140725-121443.jpg" },
|
||||
{ id: "p2", name: "Chicken Tikka Platter", price: "Rs 1,800", imageSrc: "http://img.b2bpic.net/free-photo/top-view-chicken-skewers-parchment-paper-with-cherry-tomatoes_23-2148699118.jpg" },
|
||||
{ id: "p3", name: "Grilled Fish", price: "Rs 2,500", imageSrc: "http://img.b2bpic.net/free-photo/scrimps-onion-rings-served-with-sauce-lemon_140725-8051.jpg" },
|
||||
{ id: "p4", name: "Lamb Karahi", price: "Rs 3,200", imageSrc: "http://img.b2bpic.net/free-photo/three-assorted-steamed-bao-buns-dark-serving-board_84443-85725.jpg" },
|
||||
{ id: "p5", name: "Seekh Kebab", price: "Rs 1,200", imageSrc: "http://img.b2bpic.net/free-photo/baked-clam-with-garlic-butter-served-with-garlic-bread-dark-background_1150-45279.jpg" },
|
||||
{ id: "p6", name: "Fried Fish", price: "Rs 2,400", imageSrc: "http://img.b2bpic.net/free-photo/taco-with-prawn-shrimp-sauce_74190-6007.jpg" }
|
||||
]}
|
||||
title="Menu Highlights"
|
||||
description="Taste the tradition with our popular signature dishes."
|
||||
@@ -150,9 +158,9 @@ export default function LandingPage() {
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "radial-gradient" }}
|
||||
title="Join Our Mailing List"
|
||||
description="Stay updated with special menu offers and events at The Lamb House."
|
||||
tag="Newsletter"
|
||||
title="Get in touch: 03218440321"
|
||||
description="For inquiries and reservations, give us a call or reach out at The Lamb House."
|
||||
tag="Contact Us"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -165,4 +173,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user