Merge version_1 into main #1
317
src/app/page.tsx
317
src/app/page.tsx
@@ -19,27 +19,26 @@ export default function LandingPage() {
|
||||
defaultButtonVariant="text-shift"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "#hero",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "#about",
|
||||
},
|
||||
{
|
||||
name: "Plans",
|
||||
id: "#pricing",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "#contact",
|
||||
},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Products", id: "products" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "FAQ", id: "faq" },
|
||||
{ name: "Metrics", id: "metrics" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
brandName="The Kahlon Food"
|
||||
/>
|
||||
@@ -50,40 +49,16 @@ export default function LandingPage() {
|
||||
logoText="The Kahlon Food"
|
||||
description="Authentic Punjabi home-cooked meals, delivered fresh to your door in Surrey. Just like family, made with heart."
|
||||
buttons={[
|
||||
{
|
||||
text: "Order Tiffin",
|
||||
href: "#pricing",
|
||||
},
|
||||
{
|
||||
text: "Contact Us",
|
||||
href: "#contact",
|
||||
},
|
||||
{ text: "Order Tiffin", href: "#pricing" },
|
||||
{ text: "Contact Us", href: "#contact" }
|
||||
]}
|
||||
slides={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-indian-dosa-assortment_23-2149086043.jpg",
|
||||
imageAlt: "Fresh Punjabi Tiffin",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-roti-assortment-table-with-copy-space_23-2149034037.jpg",
|
||||
imageAlt: "Delicious Daal",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-assortment-different-pakistan-goodies_23-2148821568.jpg",
|
||||
imageAlt: "Home Style Paneer",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-cooked-rice-inside-plate-dark-surface-dish-east-meal-food-dark_140725-81859.jpg",
|
||||
imageAlt: "Fresh Roti and Sides",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-fresh-vegetable-salad-with-different-seasonings-black_140725-104179.jpg",
|
||||
imageAlt: "Healthy Balanced Meal",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-indian-food-spices_23-2148747647.jpg",
|
||||
imageAlt: "Authentic Flavor",
|
||||
},
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/delicious-indian-dosa-assortment_23-2149086043.jpg", imageAlt: "Fresh Punjabi Tiffin" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/delicious-roti-assortment-table-with-copy-space_23-2149034037.jpg", imageAlt: "Delicious Daal" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/top-view-assortment-different-pakistan-goodies_23-2148821568.jpg", imageAlt: "Home Style Paneer" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/front-view-cooked-rice-inside-plate-dark-surface-dish-east-meal-food-dark_140725-81859.jpg", imageAlt: "Fresh Roti and Sides" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/top-view-fresh-vegetable-salad-with-different-seasonings-black_140725-104179.jpg", imageAlt: "Healthy Balanced Meal" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/top-view-indian-food-spices_23-2148747647.jpg", imageAlt: "Authentic Flavor" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -94,18 +69,9 @@ export default function LandingPage() {
|
||||
title="Family Kitchen, Authentic Flavors"
|
||||
description="We believe in the power of home-cooked food. Our recipes are passed down through generations, ensuring every bite feels like a warm meal from a family kitchen. Fresh, healthy, and convenient."
|
||||
metrics={[
|
||||
{
|
||||
value: "100%",
|
||||
title: "Homemade Ingredients",
|
||||
},
|
||||
{
|
||||
value: "10+",
|
||||
title: "Years of Tradition",
|
||||
},
|
||||
{
|
||||
value: "Daily",
|
||||
title: "Fresh Deliveries",
|
||||
},
|
||||
{ value: "100%", title: "Homemade Ingredients" },
|
||||
{ value: "10+", title: "Years of Tradition" },
|
||||
{ value: "Daily", title: "Fresh Deliveries" }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/fresh-cucumber-bell-pepper-mushroom-cabbage-desk_23-2148122660.jpg"
|
||||
imageAlt="Our family kitchen"
|
||||
@@ -117,64 +83,16 @@ export default function LandingPage() {
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
textboxLayout="default"
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
brand: "Classic",
|
||||
name: "Signature Daal Makhani",
|
||||
price: "$12.00",
|
||||
rating: 5,
|
||||
reviewCount: "120",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bowl-delicious-pumpkin-soup-with-seeds_114579-21246.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
brand: "Special",
|
||||
name: "Shahi Paneer",
|
||||
price: "$15.00",
|
||||
rating: 5,
|
||||
reviewCount: "98",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-indian-food-with-sauce_23-2148747683.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
brand: "Traditional",
|
||||
name: "Aloo Gobhi",
|
||||
price: "$11.00",
|
||||
rating: 4,
|
||||
reviewCount: "85",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/greek-salad-with-lime_140725-30.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
brand: "Side",
|
||||
name: "Fresh Roti Pack",
|
||||
price: "$5.00",
|
||||
rating: 5,
|
||||
reviewCount: "200",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/nutritious-indian-dosa-assortment_23-2149086077.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
brand: "Traditional",
|
||||
name: "Mixed Vegetable",
|
||||
price: "$11.00",
|
||||
rating: 5,
|
||||
reviewCount: "70",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-sliced-shaurma-tasty-meat-salad-sandwich-grey-surface-burger-pita-salad-sandwich-bread_140725-102083.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
brand: "Classic",
|
||||
name: "Jeera Rice Bowl",
|
||||
price: "$6.00",
|
||||
rating: 4,
|
||||
reviewCount: "60",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/macaroni-with-chopped-parsley-leaf-shaped-plate_114579-83089.jpg",
|
||||
},
|
||||
{ id: "p1", brand: "Classic", name: "Signature Daal Makhani", price: "$12.00", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/bowl-delicious-pumpkin-soup-with-seeds_114579-21246.jpg" },
|
||||
{ id: "p2", brand: "Special", name: "Shahi Paneer", price: "$15.00", rating: 5, reviewCount: "98", imageSrc: "http://img.b2bpic.net/free-photo/top-view-indian-food-with-sauce_23-2148747683.jpg" },
|
||||
{ id: "p3", brand: "Traditional", name: "Aloo Gobhi", price: "$11.00", rating: 4, reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/greek-salad-with-lime_140725-30.jpg" },
|
||||
{ id: "p4", brand: "Side", name: "Fresh Roti Pack", price: "$5.00", rating: 5, reviewCount: "200", imageSrc: "http://img.b2bpic.net/free-photo/nutritious-indian-dosa-assortment_23-2149086077.jpg" },
|
||||
{ id: "p5", brand: "Traditional", name: "Mixed Vegetable", price: "$11.00", rating: 5, reviewCount: "70", imageSrc: "http://img.b2bpic.net/free-photo/top-view-sliced-shaurma-tasty-meat-salad-sandwich-grey-surface-burger-pita-salad-sandwich-bread_140725-102083.jpg" },
|
||||
{ id: "p6", brand: "Classic", name: "Jeera Rice Bowl", price: "$6.00", rating: 4, reviewCount: "60", imageSrc: "http://img.b2bpic.net/free-photo/macaroni-with-chopped-parsley-leaf-shaped-plate_114579-83089.jpg" }
|
||||
]}
|
||||
title="Menu Highlights"
|
||||
description="Our signature dishes rotate daily to bring you a variety of wholesome, nutritious Punjabi flavors."
|
||||
@@ -188,56 +106,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{
|
||||
id: "weekly",
|
||||
badge: "Popular",
|
||||
price: "$90/wk",
|
||||
subtitle: "Perfect for busy professionals",
|
||||
buttons: [
|
||||
{
|
||||
text: "Subscribe",
|
||||
href: "#contact",
|
||||
},
|
||||
],
|
||||
features: [
|
||||
"5 Days of Meals",
|
||||
"1 Rotation Selection",
|
||||
"Surrey Delivery Included",
|
||||
],
|
||||
id: "weekly", badge: "Popular", price: "$90/wk", subtitle: "Perfect for busy professionals", buttons: [{ text: "Subscribe", href: "#contact" }],
|
||||
features: ["5 Days of Meals", "1 Rotation Selection", "Surrey Delivery Included"]
|
||||
},
|
||||
{
|
||||
id: "monthly",
|
||||
badge: "Best Value",
|
||||
price: "$350/mo",
|
||||
subtitle: "For consistent healthy eating",
|
||||
buttons: [
|
||||
{
|
||||
text: "Subscribe",
|
||||
href: "#contact",
|
||||
},
|
||||
],
|
||||
features: [
|
||||
"20 Days of Meals",
|
||||
"Menu Choice",
|
||||
"Prioritized Delivery",
|
||||
],
|
||||
id: "monthly", badge: "Best Value", price: "$350/mo", subtitle: "For consistent healthy eating", buttons: [{ text: "Subscribe", href: "#contact" }],
|
||||
features: ["20 Days of Meals", "Menu Choice", "Prioritized Delivery"]
|
||||
},
|
||||
{
|
||||
id: "student",
|
||||
badge: "Student",
|
||||
price: "$70/wk",
|
||||
subtitle: "Affordable home taste",
|
||||
buttons: [
|
||||
{
|
||||
text: "Subscribe",
|
||||
href: "#contact",
|
||||
},
|
||||
],
|
||||
features: [
|
||||
"4 Days of Meals",
|
||||
"Essential Menu",
|
||||
"Student Pickup/Drop",
|
||||
],
|
||||
},
|
||||
id: "student", badge: "Student", price: "$70/wk", subtitle: "Affordable home taste", buttons: [{ text: "Subscribe", href: "#contact" }],
|
||||
features: ["4 Days of Meals", "Essential Menu", "Student Pickup/Drop"]
|
||||
}
|
||||
]}
|
||||
title="Meal Plans"
|
||||
description="Flexible subscription options for singles, students, and busy families."
|
||||
@@ -251,26 +130,11 @@ export default function LandingPage() {
|
||||
rating={5}
|
||||
author="Amrit Singh"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/girl-sitting-table-holding-mobile-phone-indoors_171337-17096.jpg",
|
||||
alt: "Customer",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/casual-teenager-checking-her-shopping-bags_23-2148804689.jpg",
|
||||
alt: "Customer",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/woman-films-vlog-praising-bio-local-shop_482257-81629.jpg",
|
||||
alt: "Customer",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/attractive-happy-young-bearded-man-trendy-hat-texting-messages-via-social-networks-browsing-internet-using-free-wifi-his-electronic-device-coffee-break-restaurant_273609-1934.jpg",
|
||||
alt: "Customer",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/green-eyed-woman-white-t-shirt-pink-jacket-with-snow-white-smile-looks-front-posing-street_197531-17040.jpg",
|
||||
alt: "Customer",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/girl-sitting-table-holding-mobile-phone-indoors_171337-17096.jpg", alt: "Customer" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/casual-teenager-checking-her-shopping-bags_23-2148804689.jpg", alt: "Customer" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/woman-films-vlog-praising-bio-local-shop_482257-81629.jpg", alt: "Customer" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/attractive-happy-young-bearded-man-trendy-hat-texting-messages-via-social-networks-browsing-internet-using-free-wifi-his-electronic-device-coffee-break-restaurant_273609-1934.jpg", alt: "Customer" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/green-eyed-woman-white-t-shirt-pink-jacket-with-snow-white-smile-looks-front-posing-street_197531-17040.jpg", alt: "Customer" }
|
||||
]}
|
||||
ratingAnimation="slide-up"
|
||||
avatarsAnimation="slide-up"
|
||||
@@ -282,57 +146,27 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "faq1",
|
||||
title: "Do you deliver to my area?",
|
||||
content: "We currently deliver within Surrey, BC. Contact us to confirm specific areas.",
|
||||
},
|
||||
{
|
||||
id: "faq2",
|
||||
title: "Are ingredients fresh?",
|
||||
content: "We source local, fresh ingredients daily for our home-style cooking.",
|
||||
},
|
||||
{
|
||||
id: "faq3",
|
||||
title: "Can I request specific dietary changes?",
|
||||
content: "Yes, please reach out to us and we will try to accommodate your requests.",
|
||||
},
|
||||
{ id: "faq1", title: "Do you deliver to my area?", content: "We currently deliver within Surrey, BC. Contact us to confirm specific areas." },
|
||||
{ id: "faq2", title: "Are ingredients fresh?", content: "We source local, fresh ingredients daily for our home-style cooking." },
|
||||
{ id: "faq3", title: "Can I request specific dietary changes?", content: "Yes, please reach out to us and we will try to accommodate your requests." }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-tasty-batch-food-cooked-with-empty-notebook_23-2148765572.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
faqsAnimation="slide-up"
|
||||
title="Common Questions"
|
||||
description="Got questions? We're here to help."
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardEleven
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
textboxLayout="default"
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "500+",
|
||||
title: "Happy Families",
|
||||
description: "Fed every week",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-composition-traditional-roti_23-2149034023.jpg",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "1200+",
|
||||
title: "Tiffins Delivered",
|
||||
description: "Every single month",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-baked-chicken-with-cheese-clay-bowl_140725-11828.jpg",
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "24/7",
|
||||
title: "Customer Support",
|
||||
description: "Available for all queries",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/plates-pilaf-mashed-potatoes-grilled-vegetables_141793-1103.jpg",
|
||||
},
|
||||
{ id: "m1", value: "500+", title: "Happy Families", description: "Fed every week", imageSrc: "http://img.b2bpic.net/free-photo/delicious-composition-traditional-roti_23-2149034023.jpg" },
|
||||
{ id: "m2", value: "1200+", title: "Tiffins Delivered", description: "Every single month", imageSrc: "http://img.b2bpic.net/free-photo/side-view-baked-chicken-with-cheese-clay-bowl_140725-11828.jpg" },
|
||||
{ id: "m3", value: "24/7", title: "Customer Support", description: "Available for all queries", imageSrc: "http://img.b2bpic.net/free-photo/plates-pilaf-mashed-potatoes-grilled-vegetables_141793-1103.jpg" }
|
||||
]}
|
||||
title="Serving Surrey with Love"
|
||||
description="We are proud to serve the community through reliable, wholesome food."
|
||||
@@ -342,18 +176,11 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Get in Touch"
|
||||
title="Order Your Weekly Tiffin"
|
||||
description="Ready for a taste of home? Subscribe today and enjoy authentic Punjabi meals."
|
||||
buttons={[
|
||||
{
|
||||
text: "Contact Us",
|
||||
href: "mailto:hello@kahlonfood.com",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Contact Us", href: "mailto:hello@kahlonfood.com" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -361,36 +188,8 @@ export default function LandingPage() {
|
||||
<FooterBaseReveal
|
||||
logoText="The Kahlon Food"
|
||||
columns={[
|
||||
{
|
||||
title: "Navigation",
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "#hero",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "#about",
|
||||
},
|
||||
{
|
||||
label: "Pricing",
|
||||
href: "#pricing",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{
|
||||
label: "Email Us",
|
||||
href: "mailto:hello@kahlonfood.com",
|
||||
},
|
||||
{
|
||||
label: "Surrey, BC",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Navigation", items: [{ label: "Home", href: "#hero" }, { label: "About", href: "#about" }, { label: "Pricing", href: "#pricing" }] },
|
||||
{ title: "Contact", items: [{ label: "Email Us", href: "mailto:hello@kahlonfood.com" }, { label: "Surrey, BC", href: "#" }] }
|
||||
]}
|
||||
copyrightText="© 2024 The Kahlon Food. All rights reserved."
|
||||
/>
|
||||
@@ -398,4 +197,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user