16 Commits

Author SHA1 Message Date
8beb994170 Merge version_4 into main
Merge version_4 into main
2026-06-03 10:25:33 +00:00
fe6d4f8027 Update src/app/contact/page.tsx 2026-06-03 10:25:30 +00:00
25373cc6b1 Update src/app/blog/page.tsx 2026-06-03 10:25:30 +00:00
6cd120f127 Update src/app/about/page.tsx 2026-06-03 10:25:29 +00:00
de32d97f6a Merge version_3 into main
Merge version_3 into main
2026-06-03 10:21:14 +00:00
b38292b39f Update src/app/contact/page.tsx 2026-06-03 10:21:11 +00:00
43aac1da3a Update src/app/blog/page.tsx 2026-06-03 10:21:11 +00:00
392b00a7a8 Update src/app/about/page.tsx 2026-06-03 10:21:10 +00:00
69f4d60195 Merge version_2 into main
Merge version_2 into main
2026-06-03 10:19:29 +00:00
7afd006eba Update src/app/faq/page.tsx 2026-06-03 10:19:26 +00:00
ff387b92fd Update src/app/contact/page.tsx 2026-06-03 10:19:25 +00:00
25e63d5527 Update src/app/blog/page.tsx 2026-06-03 10:19:25 +00:00
d0071fca60 Update src/app/about/page.tsx 2026-06-03 10:19:24 +00:00
4cfa06f1aa Merge version_1 into main
Merge version_1 into main
2026-06-03 10:14:32 +00:00
109fd16e32 Merge version_1 into main
Merge version_1 into main
2026-06-03 10:13:54 +00:00
91882c0ae4 Merge version_1 into main
Merge version_1 into main
2026-06-03 10:12:55 +00:00
4 changed files with 128 additions and 340 deletions

View File

@@ -27,29 +27,19 @@ export default function LandingPage() {
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Shop",
id: "/shop",
},
name: "Shop", id: "/shop"},
{
name: "About Us",
id: "/about",
},
name: "About Us", id: "/about"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
{
name: "Blog",
id: "/blog",
},
name: "Blog", id: "/blog"},
{
name: "FAQ",
id: "/faq",
},
name: "FAQ", id: "/faq"},
{
name: "Payment", id: "/payment"},
]}
brandName="Nutkhatt"
/>
@@ -76,25 +66,13 @@ export default function LandingPage() {
tag="Driven by Excellence"
metrics={[
{
id: "m1",
value: "100K+",
description: "Happy Customers Served Globally",
},
id: "m1", value: "100K+", description: "Happy Customers Served Globally"},
{
id: "m2",
value: "99.9%",
description: "Quality Satisfaction Rate",
},
id: "m2", value: "99.9%", description: "Quality Satisfaction Rate"},
{
id: "m3",
value: "15+",
description: "Countries for Sourcing Excellence",
},
id: "m3", value: "15+", description: "Countries for Sourcing Excellence"},
{
id: "m4",
value: "5M+",
description: "Premium Dry Fruit Packs Delivered",
},
id: "m4", value: "5M+", description: "Premium Dry Fruit Packs Delivered"},
]}
metricsAnimation="blur-reveal"
/>
@@ -105,103 +83,61 @@ export default function LandingPage() {
logoText="Nutkhatt"
columns={[
{
title: "Products",
items: [
title: "Products", items: [
{
label: "Cashews",
href: "/shop#cashews",
},
label: "Cashews", href: "/shop#cashews"},
{
label: "Almonds",
href: "/shop#almonds",
},
label: "Almonds", href: "/shop#almonds"},
{
label: "Pistachios",
href: "/shop#pistachios",
},
label: "Pistachios", href: "/shop#pistachios"},
{
label: "Raisins",
href: "/shop#raisins",
},
label: "Raisins", href: "/shop#raisins"},
{
label: "Dates",
href: "/shop#dates",
},
label: "Dates", href: "/shop#dates"},
{
label: "Dried Fruits",
href: "/shop#dried-fruits",
},
label: "Dried Fruits", href: "/shop#dried-fruits"},
{
label: "Seeds",
href: "/shop#seeds",
},
label: "Seeds", href: "/shop#seeds"},
{
label: "Mixed Nuts & Seeds",
href: "/shop#mixed",
},
label: "Mixed Nuts & Seeds", href: "/shop#mixed"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Us",
href: "/about",
},
label: "About Us", href: "/about"},
{
label: "Contact Us",
href: "/contact",
},
label: "Contact Us", href: "/contact"},
{
label: "Blog",
href: "/blog",
},
label: "Blog", href: "/blog"},
{
label: "Careers",
href: "#",
},
label: "Careers", href: "#"},
{
label: "Payment", href: "/payment"},
],
},
{
title: "Customer Service",
items: [
title: "Customer Service", items: [
{
label: "FAQ",
href: "/faq",
},
label: "FAQ", href: "/faq"},
{
label: "Track Order",
href: "/track-order",
},
label: "Track Order", href: "/track-order"},
{
label: "Returns & Refunds",
href: "/refund-policy",
},
label: "Returns & Refunds", href: "/refund-policy"},
{
label: "WhatsApp Support",
href: "#",
},
label: "WhatsApp Support", href: "#"},
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Privacy Policy",
href: "/privacy-policy",
},
label: "Privacy Policy", href: "/privacy-policy"},
{
label: "Shipping Policy",
href: "/shipping-policy",
},
label: "Shipping Policy", href: "/shipping-policy"},
{
label: "Refund Policy",
href: "/refund-policy",
},
label: "Refund Policy", href: "/refund-policy"},
{
label: "Terms & Conditions",
href: "/terms-conditions",
},
label: "Terms & Conditions", href: "/terms-conditions"},
],
},
]}
@@ -211,4 +147,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -38,6 +38,8 @@ export default function LandingPage() {
name: "Blog", id: "/blog"},
{
name: "FAQ", id: "/faq"},
{
name: "Payment", id: "/payment"},
]}
brandName="Nutkhatt"
/>
@@ -139,6 +141,8 @@ export default function LandingPage() {
label: "Blog", href: "/blog"},
{
label: "Careers", href: "#"},
{
label: "Payment", href: "/payment"},
],
},
{
@@ -172,4 +176,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -26,29 +26,19 @@ export default function LandingPage() {
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Shop",
id: "/shop",
},
name: "Shop", id: "/shop"},
{
name: "About Us",
id: "/about",
},
name: "About Us", id: "/about"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
{
name: "Blog",
id: "/blog",
},
name: "Blog", id: "/blog"},
{
name: "FAQ",
id: "/faq",
},
name: "FAQ", id: "/faq"},
{
name: "Payment", id: "/payment"},
]}
brandName="Nutkhatt"
/>
@@ -61,27 +51,16 @@ export default function LandingPage() {
description="Have questions, feedback, or need assistance? Our dedicated support team is here to provide you with a seamless experience. Reach out anytime!"
inputs={[
{
name: "name",
type: "text",
placeholder: "Your Name",
required: true,
name: "name", type: "text", placeholder: "Your Name", required: true,
},
{
name: "email",
type: "email",
placeholder: "Your Email",
required: true,
name: "email", type: "email", placeholder: "Your Email", required: true,
},
{
name: "phone",
type: "tel",
placeholder: "Phone Number (Optional)",
},
name: "phone", type: "tel", placeholder: "Phone Number (Optional)"},
]}
textarea={{
name: "message",
placeholder: "Your Message",
rows: 5,
name: "message", placeholder: "Your Message", rows: 5,
required: true,
}}
imageSrc="http://img.b2bpic.net/free-photo/cool-different-types-buttons_23-2150170585.jpg"
@@ -97,20 +76,11 @@ export default function LandingPage() {
useInvertedBackground={true}
faqs={[
{
id: "confaq1",
title: "What are your support hours?",
content: "Our customer support team is available Monday to Friday, 9:00 AM to 6:00 PM IST.",
},
id: "confaq1", title: "What are your support hours?", content: "Our customer support team is available Monday to Friday, 9:00 AM to 6:00 PM IST."},
{
id: "confaq2",
title: "How long does it take to get a response?",
content: "We strive to respond to all inquiries within 24-48 business hours.",
},
id: "confaq2", title: "How long does it take to get a response?", content: "We strive to respond to all inquiries within 24-48 business hours."},
{
id: "confaq3",
title: "Can I get assistance via WhatsApp?",
content: "Yes, we offer dedicated WhatsApp support for quick queries and order updates. Find the link on our Contact Us page.",
},
id: "confaq3", title: "Can I get assistance via WhatsApp?", content: "Yes, we offer dedicated WhatsApp support for quick queries and order updates. Find the link on our Contact Us page."},
]}
sideTitle="Contact Support FAQs"
sideDescription="Quick answers for common contact-related inquiries."
@@ -125,103 +95,61 @@ export default function LandingPage() {
logoText="Nutkhatt"
columns={[
{
title: "Products",
items: [
title: "Products", items: [
{
label: "Cashews",
href: "/shop#cashews",
},
label: "Cashews", href: "/shop#cashews"},
{
label: "Almonds",
href: "/shop#almonds",
},
label: "Almonds", href: "/shop#almonds"},
{
label: "Pistachios",
href: "/shop#pistachios",
},
label: "Pistachios", href: "/shop#pistachios"},
{
label: "Raisins",
href: "/shop#raisins",
},
label: "Raisins", href: "/shop#raisins"},
{
label: "Dates",
href: "/shop#dates",
},
label: "Dates", href: "/shop#dates"},
{
label: "Dried Fruits",
href: "/shop#dried-fruits",
},
label: "Dried Fruits", href: "/shop#dried-fruits"},
{
label: "Seeds",
href: "/shop#seeds",
},
label: "Seeds", href: "/shop#seeds"},
{
label: "Mixed Nuts & Seeds",
href: "/shop#mixed",
},
label: "Mixed Nuts & Seeds", href: "/shop#mixed"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Us",
href: "/about",
},
label: "About Us", href: "/about"},
{
label: "Contact Us",
href: "/contact",
},
label: "Contact Us", href: "/contact"},
{
label: "Blog",
href: "/blog",
},
label: "Blog", href: "/blog"},
{
label: "Careers",
href: "#",
},
label: "Careers", href: "#"},
{
label: "Payment", href: "/payment"},
],
},
{
title: "Customer Service",
items: [
title: "Customer Service", items: [
{
label: "FAQ",
href: "/faq",
},
label: "FAQ", href: "/faq"},
{
label: "Track Order",
href: "/track-order",
},
label: "Track Order", href: "/track-order"},
{
label: "Returns & Refunds",
href: "/refund-policy",
},
label: "Returns & Refunds", href: "/refund-policy"},
{
label: "WhatsApp Support",
href: "#",
},
label: "WhatsApp Support", href: "#"},
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Privacy Policy",
href: "/privacy-policy",
},
label: "Privacy Policy", href: "/privacy-policy"},
{
label: "Shipping Policy",
href: "/shipping-policy",
},
label: "Shipping Policy", href: "/shipping-policy"},
{
label: "Refund Policy",
href: "/refund-policy",
},
label: "Refund Policy", href: "/refund-policy"},
{
label: "Terms & Conditions",
href: "/terms-conditions",
},
label: "Terms & Conditions", href: "/terms-conditions"},
],
},
]}
@@ -231,4 +159,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -26,29 +26,19 @@ export default function LandingPage() {
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Shop",
id: "/shop",
},
name: "Shop", id: "/shop"},
{
name: "About Us",
id: "/about",
},
name: "About Us", id: "/about"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
{
name: "Blog",
id: "/blog",
},
name: "Blog", id: "/blog"},
{
name: "FAQ",
id: "/faq",
},
name: "FAQ", id: "/faq"},
{
name: "Reviews", id: "#reviews"},
]}
brandName="Nutkhatt"
/>
@@ -59,35 +49,17 @@ export default function LandingPage() {
useInvertedBackground={false}
faqs={[
{
id: "faqpage1",
title: "What makes Nutkhatt dry fruits premium?",
content: "Our dry fruits are sourced from top global origins, undergo stringent quality checks, and are packed using advanced, hygienic processes to preserve their natural goodness and flavor.",
},
id: "faqpage1", title: "What makes Nutkhatt dry fruits premium?", content: "Our dry fruits are sourced from top global origins, undergo stringent quality checks, and are packed using advanced, hygienic processes to preserve their natural goodness and flavor."},
{
id: "faqpage2",
title: "How should I store my dry fruits?",
content: "For optimal freshness, store dry fruits in an airtight container in a cool, dry place away from direct sunlight. Refrigeration can extend their shelf life.",
},
id: "faqpage2", title: "How should I store my dry fruits?", content: "For optimal freshness, store dry fruits in an airtight container in a cool, dry place away from direct sunlight. Refrigeration can extend their shelf life."},
{
id: "faqpage3",
title: "Do you use any preservatives or artificial flavors?",
content: "No, Nutkhatt dry fruits are 100% natural, free from artificial preservatives, colors, and flavors, ensuring pure and unadulterated taste.",
},
id: "faqpage3", title: "Do you use any preservatives or artificial flavors?", content: "No, Nutkhatt dry fruits are 100% natural, free from artificial preservatives, colors, and flavors, ensuring pure and unadulterated taste."},
{
id: "faqpage4",
title: "What is your return/refund policy?",
content: "We offer a hassle-free return and refund policy for damaged or incorrect orders. Please refer to our detailed Refund Policy page for more information.",
},
id: "faqpage4", title: "What is your return/refund policy?", content: "We offer a hassle-free return and refund policy for damaged or incorrect orders. Please refer to our detailed Refund Policy page for more information."},
{
id: "faqpage5",
title: "Can I place bulk orders?",
content: "Yes, we cater to bulk orders for events, corporate gifting, or wholesale. Please contact our sales team for custom quotes and arrangements.",
},
id: "faqpage5", title: "Can I place bulk orders?", content: "Yes, we cater to bulk orders for events, corporate gifting, or wholesale. Please contact our sales team for custom quotes and arrangements."},
{
id: "faqpage6",
title: "Are your products gluten-free and vegan?",
content: "Most of our dry fruits are naturally gluten-free and vegan. Please check individual product descriptions for specific dietary information.",
},
id: "faqpage6", title: "Are your products gluten-free and vegan?", content: "Most of our dry fruits are naturally gluten-free and vegan. Please check individual product descriptions for specific dietary information."},
]}
sideTitle="Your Comprehensive Guide to Nutkhatt"
sideDescription="Everything you need to know about our products, services, and policies. If your question isn't here, please reach out!"
@@ -104,22 +76,14 @@ export default function LandingPage() {
description="Our customer support team is ready to assist you. Send us your query, and we'll get back to you promptly."
inputs={[
{
name: "name",
type: "text",
placeholder: "Your Name",
required: true,
name: "name", type: "text", placeholder: "Your Name", required: true,
},
{
name: "email",
type: "email",
placeholder: "Your Email",
required: true,
name: "email", type: "email", placeholder: "Your Email", required: true,
},
]}
textarea={{
name: "question",
placeholder: "Your Question",
rows: 4,
name: "question", placeholder: "Your Question", rows: 4,
required: true,
}}
imageSrc="http://img.b2bpic.net/free-photo/close-up-hands-holding-tablet_23-2148781042.jpg"
@@ -135,103 +99,59 @@ export default function LandingPage() {
logoText="Nutkhatt"
columns={[
{
title: "Products",
items: [
title: "Products", items: [
{
label: "Cashews",
href: "/shop#cashews",
},
label: "Cashews", href: "/shop#cashews"},
{
label: "Almonds",
href: "/shop#almonds",
},
label: "Almonds", href: "/shop#almonds"},
{
label: "Pistachios",
href: "/shop#pistachios",
},
label: "Pistachios", href: "/shop#pistachios"},
{
label: "Raisins",
href: "/shop#raisins",
},
label: "Raisins", href: "/shop#raisins"},
{
label: "Dates",
href: "/shop#dates",
},
label: "Dates", href: "/shop#dates"},
{
label: "Dried Fruits",
href: "/shop#dried-fruits",
},
label: "Dried Fruits", href: "/shop#dried-fruits"},
{
label: "Seeds",
href: "/shop#seeds",
},
label: "Seeds", href: "/shop#seeds"},
{
label: "Mixed Nuts & Seeds",
href: "/shop#mixed",
},
label: "Mixed Nuts & Seeds", href: "/shop#mixed"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Us",
href: "/about",
},
label: "About Us", href: "/about"},
{
label: "Contact Us",
href: "/contact",
},
label: "Contact Us", href: "/contact"},
{
label: "Blog",
href: "/blog",
},
label: "Blog", href: "/blog"},
{
label: "Careers",
href: "#",
},
label: "Careers", href: "#"},
],
},
{
title: "Customer Service",
items: [
title: "Customer Service", items: [
{
label: "FAQ",
href: "/faq",
},
label: "FAQ", href: "/faq"},
{
label: "Track Order",
href: "/track-order",
},
label: "Track Order", href: "/track-order"},
{
label: "Returns & Refunds",
href: "/refund-policy",
},
label: "Returns & Refunds", href: "/refund-policy"},
{
label: "WhatsApp Support",
href: "#",
},
label: "WhatsApp Support", href: "#"},
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Privacy Policy",
href: "/privacy-policy",
},
label: "Privacy Policy", href: "/privacy-policy"},
{
label: "Shipping Policy",
href: "/shipping-policy",
},
label: "Shipping Policy", href: "/shipping-policy"},
{
label: "Refund Policy",
href: "/refund-policy",
},
label: "Refund Policy", href: "/refund-policy"},
{
label: "Terms & Conditions",
href: "/terms-conditions",
},
label: "Terms & Conditions", href: "/terms-conditions"},
],
},
]}
@@ -241,4 +161,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}