5 Commits

Author SHA1 Message Date
c9e4f0c8d9 Update src/app/page.tsx 2026-04-02 07:32:29 +00:00
32b69fba3a Merge version_1 into main
Merge version_1 into main
2026-04-02 07:23:45 +00:00
82260f4701 Merge version_1 into main
Merge version_1 into main
2026-04-02 07:23:02 +00:00
46f0fc5db3 Merge version_1 into main
Merge version_1 into main
2026-04-02 07:22:19 +00:00
83823fc86c Merge version_1 into main
Merge version_1 into main
2026-04-02 07:20:12 +00:00

View File

@@ -2,9 +2,9 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
@@ -37,17 +37,18 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroBillboardRotatedCarousel
<HeroBillboardGallery
background={{ variant: "gradient-bars" }}
title="Naam Khadak, Swad Kadak 🔥"
description="Authentic Punjabi Dhaba in Malviya Nagar. Freshly cooked, pocket-friendly, and packed with traditional taste."
carouselItems={[
{ id: "1", imageSrc: "http://img.b2bpic.net/free-vector/yellow-watercolor-background-diwali-sales_23-2147695853.jpg?_wi=1", imageAlt: "Dhaba vibe" },
{ id: "2", imageSrc: "http://img.b2bpic.net/free-photo/top-half-view-raw-chicken-skewers-natural-wood-board-turmeric-small-bowl-dark_140725-148800.jpg?_wi=1", imageAlt: "Naan serving" },
{ id: "3", imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-meat-soup-with-potatoes-seasonings-dark-desk_140725-76938.jpg?_wi=1", imageAlt: "Kebab platter" },
{ id: "4", imageSrc: "http://img.b2bpic.net/free-photo/delicious-indian-dosa-arrangement_23-2149086031.jpg", imageAlt: "Happy diners" },
{ id: "5", imageSrc: "http://img.b2bpic.net/free-photo/male-chef-kitchen-cooking-dish-frying-pan_23-2149646221.jpg?_wi=1", imageAlt: "Tandoor cooking" },
{ id: "6", imageSrc: "http://img.b2bpic.net/free-photo/tasty-stew-goulash-with-vegetables-served-bowl_1220-7675.jpg?_wi=1", imageAlt: "Food bowl" },
mediaAnimation="slide-up"
mediaItems={[
{ imageSrc: "http://img.b2bpic.net/free-vector/yellow-watercolor-background-diwali-sales_23-2147695853.jpg?_wi=1", imageAlt: "Dhaba vibe" },
{ imageSrc: "http://img.b2bpic.net/free-photo/top-half-view-raw-chicken-skewers-natural-wood-board-turmeric-small-bowl-dark_140725-148800.jpg?_wi=1", imageAlt: "Naan serving" },
{ imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-meat-soup-with-potatoes-seasonings-dark-desk_140725-76938.jpg?_wi=1", imageAlt: "Kebab platter" },
{ imageSrc: "http://img.b2bpic.net/free-photo/delicious-indian-dosa-arrangement_23-2149086031.jpg", imageAlt: "Happy diners" },
{ imageSrc: "http://img.b2bpic.net/free-photo/male-chef-kitchen-cooking-dish-frying-pan_23-2149646221.jpg?_wi=1", imageAlt: "Tandoor cooking" },
{ imageSrc: "http://img.b2bpic.net/free-photo/tasty-stew-goulash-with-vegetables-served-bowl_1220-7675.jpg?_wi=1", imageAlt: "Food bowl" },
]}
/>
</div>
@@ -126,4 +127,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}