7 Commits

Author SHA1 Message Date
4786cc3bfb Merge version_4 into main
Merge version_4 into main
2026-05-18 09:54:52 +00:00
4fa44fecb5 Update src/app/page.tsx 2026-05-18 09:54:49 +00:00
4785c9e65b Merge version_4 into main
Merge version_4 into main
2026-05-18 09:54:28 +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

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>
@@ -105,10 +113,12 @@ export default function LandingPage() {
{ 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: "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>