8 Commits

Author SHA1 Message Date
4fa44fecb5 Update src/app/page.tsx 2026-05-18 09:54:49 +00:00
54319f65ec Update src/app/page.tsx 2026-05-18 09:54:25 +00:00
c8cce6decb Merge version_3 into main
Merge version_3 into main
2026-05-18 09:51:42 +00:00
92454b9e11 Update src/app/page.tsx 2026-05-18 09:51:36 +00:00
b0a771ea27 Merge version_2 into main
Merge version_2 into main
2026-05-18 09:45:07 +00:00
d01085d1c5 Update src/app/page.tsx 2026-05-18 09:45:01 +00:00
c8c9962547 Merge version_1 into main
Merge version_1 into main
2026-05-18 09:34:25 +00:00
9ee8600dec Merge version_1 into main
Merge version_1 into main
2026-05-18 09:33:59 +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,14 +53,14 @@ 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" },
{ imageSrc: "http://img.b2bpic.net/free-photo/fried-chicken-with-rice-dried-berries_140725-6152.jpg", imageAlt: "Authentic Barbecue" },
{ imageSrc: "http://img.b2bpic.net/free-photo/lamb-barbeque-served-lavaash-with-fresh-herbs-lemon-slices_114579-1936.jpg", imageAlt: "Qabuli Palao" },
{ imageSrc: "http://img.b2bpic.net/free-photo/lamb-barbeque-served-lavaash-with-fresh-herbs-lemon-slices_114579-1936.jpg?_wi=1", imageAlt: "Qabuli Palao" },
{ imageSrc: "http://img.b2bpic.net/free-photo/azeri-national-kebab-mix-with-onions-herbs_140725-1045.jpg", imageAlt: "Fresh Naan" },
{ imageSrc: "http://img.b2bpic.net/free-photo/top-view-grilled-chicken-with-vegetables-colorful-rug_140725-12385.jpg", imageAlt: "Lamb Karahi" }
{ imageSrc: "http://img.b2bpic.net/free-photo/top-view-grilled-chicken-with-vegetables-colorful-rug_140725-12385.jpg?_wi=1", imageAlt: "Lamb Karahi" }
]}
/>
</div>
@@ -100,15 +108,17 @@ 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" },
{ id: "p7", name: "Qabuli Palao", price: "Rs 1,500", imageSrc: "http://img.b2bpic.net/free-photo/lamb-barbeque-served-lavaash-with-fresh-herbs-lemon-slices_114579-1936.jpg?_wi=2" },
{ id: "p8", name: "Chicken Karahi", price: "Rs 2,800", imageSrc: "http://img.b2bpic.net/free-photo/top-view-grilled-chicken-with-vegetables-colorful-rug_140725-12385.jpg?_wi=2" }
]}
title="Menu Highlights"
description="Taste the tradition with our popular signature dishes."
title="Our Full Menu"
description="Discover our complete range of traditional Afghani and Pakistani delicacies."
/>
</div>
@@ -150,9 +160,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 +175,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}