5 Commits

Author SHA1 Message Date
25d75ed655 Update src/app/page.tsx 2026-05-12 20:48:57 +00:00
8081cc5261 Merge version_3 into main
Merge version_3 into main
2026-05-12 20:47:19 +00:00
5b58501057 Update src/app/page.tsx 2026-05-12 20:47:16 +00:00
03cfdd11b6 Merge version_2 into main
Merge version_2 into main
2026-05-12 20:46:33 +00:00
6df806bec9 Update src/app/page.tsx 2026-05-12 20:46:30 +00:00

View File

@@ -30,26 +30,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "home",
},
{
name: "About",
id: "about",
},
{
name: "Menu",
id: "products",
},
{
name: "Testimonials",
id: "testimonials",
},
{
name: "Contact",
id: "contact",
},
{ name: "Home", id: "home" },
{ name: "About", id: "about" },
{ name: "Menu", id: "products" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
]}
brandName="Kohli Sweets"
/>
@@ -57,17 +42,10 @@ export default function LandingPage() {
<div id="home" data-section="home">
<HeroBillboardScroll
background={{
variant: "gradient-bars",
}}
background={{ variant: "gradient-bars" }}
title="Kohli Sweets & Bakers"
description="Authentic Punjabi Flavors, Crafted with Heritage and Luxury. Experience the tradition of excellence in every bite."
buttons={[
{
text: "View Menu",
href: "#products",
},
]}
buttons={[{ text: "View Menu", href: "#products" }]}
imageSrc="http://img.b2bpic.net/free-photo/delectable-sweet-corn-sticks-plate-blue-table_114579-89707.jpg"
/>
</div>
@@ -76,15 +54,8 @@ export default function LandingPage() {
<InlineImageSplitTextAbout
useInvertedBackground={false}
heading={[
{
type: "text",
content: "Our Legacy of Taste",
},
{
type: "image",
src: "http://img.b2bpic.net/free-photo/male-hand-gloves-making-dough-marble-table_2831-8152.jpg",
alt: "Crafting sweets",
},
{ type: "text", content: "Our Legacy of Taste" },
{ type: "image", src: "http://img.b2bpic.net/free-photo/male-hand-gloves-making-dough-marble-table_2831-8152.jpg", alt: "Crafting sweets" },
]}
/>
</div>
@@ -96,61 +67,14 @@ export default function LandingPage() {
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
products={[
{
id: "1",
name: "Gulab Jamun",
brand: "Signature",
price: "₹150",
rating: 5,
reviewCount: "120",
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-arrangement-with-chocolate-box-rose_23-2148243780.jpg",
},
{
id: "2",
name: "Ras Malai",
brand: "Signature",
price: "₹200",
rating: 5,
reviewCount: "95",
imageSrc: "http://img.b2bpic.net/free-photo/colors-prepared-holi-festival_23-2151903622.jpg",
},
{
id: "3",
name: "Assorted Barfi",
brand: "Gift Box",
price: "₹500",
rating: 4,
reviewCount: "200",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-organic-dye-collection_23-2148883210.jpg",
},
{
id: "4",
name: "Kesar Jalebi",
brand: "Traditional",
price: "₹120",
rating: 5,
reviewCount: "150",
imageSrc: "http://img.b2bpic.net/free-photo/tea-set-with-varieties-traditional-nuts-lemon-confiture-sweets-served-white-tablecloth_114579-279.jpg",
},
{
id: "5",
name: "Motichoor Ladoo",
brand: "Classic",
price: "₹180",
rating: 4,
reviewCount: "80",
imageSrc: "http://img.b2bpic.net/free-photo/gourmet-dessert-bowl-with-fresh-fruit-variation-generated-by-ai_188544-38848.jpg",
},
{
id: "6",
name: "Kaju Katli",
brand: "Premium",
price: "₹450",
rating: 5,
reviewCount: "300",
imageSrc: "http://img.b2bpic.net/free-photo/tray-full-appetizing-turkish-delight-marble-background-high-quality-photo_114579-36450.jpg",
},
{ id: "1", name: "Gulab Jamun", brand: "Signature", price: "₹150", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-arrangement-with-chocolate-box-rose_23-2148243780.jpg" },
{ id: "2", name: "Ras Malai", brand: "Signature", price: "₹200", rating: 5, reviewCount: "95", imageSrc: "http://img.b2bpic.net/free-photo/colors-prepared-holi-festival_23-2151903622.jpg" },
{ id: "3", name: "Assorted Barfi", brand: "Gift Box", price: "₹500", rating: 4, reviewCount: "200", imageSrc: "http://img.b2bpic.net/free-photo/top-view-organic-dye-collection_23-2148883210.jpg" },
{ id: "4", name: "Kesar Jalebi", brand: "Traditional", price: "₹120", rating: 5, reviewCount: "150", imageSrc: "http://img.b2bpic.net/free-photo/tea-set-with-varieties-traditional-nuts-lemon-confiture-sweets-served-white-tablecloth_114579-279.jpg" },
{ id: "5", name: "Motichoor Ladoo", brand: "Classic", price: "₹180", rating: 4, reviewCount: "80", imageSrc: "http://img.b2bpic.net/free-photo/gourmet-dessert-bowl-with-fresh-fruit-variation-generated-by-ai_188544-38848.jpg" },
{ id: "6", name: "Kaju Katli", brand: "Premium", price: "₹450", rating: 5, reviewCount: "300", imageSrc: "http://img.b2bpic.net/free-photo/tray-full-appetizing-turkish-delight-marble-background-high-quality-photo_114579-36450.jpg" },
]}
buttons={[{ text: "Order Now", href: "#contact" }]}
title="Signature Mithai"
description="Hand-selected traditional sweets made with pure desi ghee and premium ingredients."
/>
@@ -161,20 +85,8 @@ export default function LandingPage() {
animationType="depth-3d"
textboxLayout="default"
useInvertedBackground={false}
negativeCard={{
items: [
"No artificial preservatives",
"Zero compromise on quality",
"Traditional methods only",
],
}}
positiveCard={{
items: [
"Farm-fresh milk daily",
"Authentic Punjabi recipes",
"Luxurious dining environment",
],
}}
negativeCard={{ items: ["No artificial preservatives", "Zero compromise on quality", "Traditional methods only"] }}
positiveCard={{ items: ["Farm-fresh milk daily", "Authentic Punjabi recipes", "Luxurious dining environment"] }}
title="Why Choose Kohli?"
description="Combining old-school Punjabi hospitality with a modern, luxurious dining experience."
/>
@@ -185,46 +97,11 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
testimonials={[
{
id: "1",
title: "Incredible Flavors",
quote: "The most authentic mithai I have had in years. Feels like home.",
name: "Rajesh Kumar",
role: "Patron",
imageSrc: "http://img.b2bpic.net/free-photo/adults-enjoying-mexican-food_23-2149663876.jpg",
},
{
id: "2",
title: "Luxury Dining",
quote: "The ambiance is perfect for family celebrations. Highly recommend.",
name: "Simran Kaur",
role: "Regular",
imageSrc: "http://img.b2bpic.net/free-photo/group-young-happy-friends-enjoying-lunch-focus-is-african-american-woman-serving-salad-dining-table_637285-2870.jpg",
},
{
id: "3",
title: "Sweet Perfection",
quote: "Kohli's Kaju Katli is simply unmatched in flavor and texture.",
name: "Anil Singh",
role: "Foodie",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-with-paper-wrapped-sandwich_23-2151309996.jpg",
},
{
id: "4",
title: "Great Hospitality",
quote: "The staff goes above and beyond. Truly a luxurious experience.",
name: "Deepika V.",
role: "Guest",
imageSrc: "http://img.b2bpic.net/free-photo/couple-together-romantic-dinner_23-2148060555.jpg",
},
{
id: "5",
title: "Heritage Taste",
quote: "Keeping the old traditions alive with such elegance. Brilliant.",
name: "Vikram Singh",
role: "Patron",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-woman-posing-with-souvenirs_23-2149557028.jpg",
},
{ id: "1", title: "Incredible Flavors", quote: "The most authentic mithai I have had in years. Feels like home.", name: "Rajesh Kumar", role: "Patron", imageSrc: "http://img.b2bpic.net/free-photo/adults-enjoying-mexican-food_23-2149663876.jpg" },
{ id: "2", title: "Luxury Dining", quote: "The ambiance is perfect for family celebrations. Highly recommend.", name: "Simran Kaur", role: "Regular", imageSrc: "http://img.b2bpic.net/free-photo/group-young-happy-friends-enjoying-lunch-focus-is-african-american-woman-serving-salad-dining-table_637285-2870.jpg" },
{ id: "3", title: "Sweet Perfection", quote: "Kohli's Kaju Katli is simply unmatched in flavor and texture.", name: "Anil Singh", role: "Foodie", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-with-paper-wrapped-sandwich_23-2151309996.jpg" },
{ id: "4", title: "Great Hospitality", quote: "The staff goes above and beyond. Truly a luxurious experience.", name: "Deepika V.", role: "Guest", imageSrc: "http://img.b2bpic.net/free-photo/couple-together-romantic-dinner_23-2148060555.jpg" },
{ id: "5", title: "Heritage Taste", quote: "Keeping the old traditions alive with such elegance. Brilliant.", name: "Vikram Singh", role: "Patron", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-woman-posing-with-souvenirs_23-2149557028.jpg" },
]}
title="Voices of Delight"
description="What our patrons say about their authentic Punjabi experience."
@@ -236,21 +113,9 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
faqs={[
{
id: "f1",
title: "Do you offer catering?",
content: "Yes, we specialize in high-end catering for weddings and events.",
},
{
id: "f2",
title: "Are your sweets eggless?",
content: "100% of our traditional mithai and bakery items are eggless.",
},
{
id: "f3",
title: "Where are you located?",
content: "We have multiple flagship stores across the city. Visit our Contact section for details.",
},
{ id: "f1", title: "Do you offer catering?", content: "Yes, we specialize in high-end catering for weddings and events." },
{ id: "f2", title: "Are your sweets eggless?", content: "100% of our traditional mithai and bakery items are eggless." },
{ id: "f3", title: "Where are you located?", content: "We have multiple flagship stores across the city. Visit our Contact section for details." },
]}
imageSrc="http://img.b2bpic.net/free-photo/patient-enjoying-free-time-after-chemotherapy-treatment_23-2149261143.jpg"
mediaAnimation="slide-up"
@@ -263,54 +128,19 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={false}
background={{
variant: "radial-gradient",
}}
background={{ variant: "radial-gradient" }}
tag="Visit Us"
title="Experience Kohli Excellence"
description="Book a table or inquire about our premium catering services today."
buttons={[
{
text: "Contact Us Now",
href: "#",
},
]}
description="Book a table or inquire about our premium catering services today at 0175 235 3630."
buttons={[{ text: "Reserve Your Table or Inquire", href: "#" }]}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Menu",
items: [
{
label: "Mithai",
href: "#products",
},
{
label: "Restaurant",
href: "#",
},
{
label: "Catering",
href: "#",
},
],
},
{
title: "Support",
items: [
{
label: "FAQ",
href: "#faq",
},
{
label: "Contact",
href: "#contact",
},
],
},
{ title: "Menu", items: [{ label: "Mithai", href: "#products" }, { label: "Restaurant", href: "#" }, { label: "Catering", href: "#" }] },
{ title: "Support", items: [{ label: "FAQ", href: "#faq" }, { label: "Contact", href: "#contact" }] },
]}
bottomLeftText="© 2024 Kohli Sweets & Bakers"
bottomRightText="All Rights Reserved."
@@ -319,4 +149,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}