From 5769aebdcc5829eb6dcd112e4c5256842e6e1724 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 12:29:23 +0000 Subject: [PATCH 1/6] Update src/app/about/page.tsx --- src/app/about/page.tsx | 41 ++++++++++------------------------------- 1 file changed, 10 insertions(+), 31 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 32e0b88..7b34423 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -34,8 +34,7 @@ export default function AboutPage() { { name: "Blog", id: "/blog" } ]} button={{ - text: "Order on WhatsApp", - href: "https://wa.me/919876543210" + text: "Cart", href: "/cart" }} animateOnLoad={true} /> @@ -81,32 +80,16 @@ export default function AboutPage() { useInvertedBackground={false} metrics={[ { - id: "1", - value: "5000", - title: "Happy Customers", - description: "Across India trusting our products", - icon: Users + id: "1", value: "5000", title: "Happy Customers", description: "Across India trusting our products", icon: Users }, { - id: "2", - value: "25", - title: "Product Range", - description: "Handmade natural cosmetics", - icon: Package + id: "2", value: "25", title: "Product Range", description: "Handmade natural cosmetics", icon: Package }, { - id: "3", - value: "100", - title: "Pure Natural", - description: "Ingredients without chemicals", - icon: Leaf + id: "3", value: "100", title: "Pure Natural", description: "Ingredients without chemicals", icon: Leaf }, { - id: "4", - value: "4.9", - title: "Average Rating", - description: "Out of 5 stars from verified buyers", - icon: Star + id: "4", value: "4.9", title: "Average Rating", description: "Out of 5 stars from verified buyers", icon: Star } ]} /> @@ -117,8 +100,7 @@ export default function AboutPage() { ); -} \ No newline at end of file +} -- 2.49.1 From dbf0c711f026502a3be731a20f6398971b81df15 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 12:29:24 +0000 Subject: [PATCH 2/6] Add src/app/cart/page.tsx --- src/app/cart/page.tsx | 280 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 280 insertions(+) create mode 100644 src/app/cart/page.tsx diff --git a/src/app/cart/page.tsx b/src/app/cart/page.tsx new file mode 100644 index 0000000..aa9d14a --- /dev/null +++ b/src/app/cart/page.tsx @@ -0,0 +1,280 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import { Mail } from 'lucide-react'; +import { useState } from 'react'; +import Link from 'next/link'; + +export default function CartPage() { + const [cartItems, setCartItems] = useState([ + { + id: "1", name: "Pure Lip Balm - Rose", price: 299, + quantity: 1, + imageSrc: "http://img.b2bpic.net/free-photo/shea-butter-beauty-treatment-arrangement_23-2148963296.jpg?_wi=1" + }, + { + id: "2", name: "Honey Glow Face Cream", price: 599, + quantity: 1, + imageSrc: "http://img.b2bpic.net/free-photo/high-angle-cream-container-plants_23-2149339775.jpg?_wi=1" + } + ]); + + const [isCheckingOut, setIsCheckingOut] = useState(false); + + const updateQuantity = (id: string, newQuantity: number) => { + if (newQuantity <= 0) { + removeItem(id); + } else { + setCartItems(cartItems.map(item => + item.id === id ? { ...item, quantity: newQuantity } : item + )); + } + }; + + const removeItem = (id: string) => { + setCartItems(cartItems.filter(item => item.id !== id)); + }; + + const subtotal = cartItems.reduce((sum, item) => sum + (item.price * item.quantity), 0); + const shipping = subtotal > 500 ? 0 : 50; + const tax = Math.round(subtotal * 0.05); + const total = subtotal + shipping + tax; + + const handleCheckout = () => { + setIsCheckingOut(true); + // Initialize Razorpay payment + const script = document.createElement('script'); + script.src = 'https://checkout.razorpay.com/v1/checkout.js'; + script.async = true; + script.onload = () => { + const options = { + key: process.env.NEXT_PUBLIC_RAZORPAY_KEY_ID || 'rzp_test_1234567890', + amount: total * 100, + currency: 'INR', + name: 'Vanita Haria', + description: 'Natural Cosmetics Purchase', + order_id: `order_${Date.now()}`, + handler: function(response: any) { + alert('Payment successful! Payment ID: ' + response.razorpay_payment_id); + setCartItems([]); + setIsCheckingOut(false); + }, + prefill: { + name: 'Customer', + email: 'customer@example.com', + contact: '919876543210' + }, + theme: { + color: '#b82b40' + } + }; + const rzp = new (window as any).Razorpay(options); + rzp.open(); + }; + document.body.appendChild(script); + }; + + return ( + + {/* Navbar */} + + + {/* Cart Content */} +
+
+

Shopping Cart

+ + {cartItems.length === 0 ? ( +
+

Your cart is empty

+ + Continue Shopping + +
+ ) : ( +
+ {/* Cart Items */} +
+
+ {cartItems.map(item => ( +
+ {item.name} +
+

{item.name}

+

₹{item.price.toLocaleString()}

+
+
+ + {item.quantity} + +
+ +
+
+
+

₹{(item.price * item.quantity).toLocaleString()}

+
+
+ ))} +
+
+ + {/* Order Summary */} +
+
+

Order Summary

+ +
+
+ Subtotal + ₹{subtotal.toLocaleString()} +
+
+ Shipping + + {shipping === 0 ? 'FREE' : `₹${shipping.toLocaleString()}`} + +
+
+ Tax (5%) + ₹{tax.toLocaleString()} +
+
+ +
+ Total + ₹{total.toLocaleString()} +
+ + {subtotal > 500 && ( +

✓ Free shipping on orders above ₹500!

+ )} + + + + + Continue Shopping + +
+
+
+ )} +
+
+ + {/* Newsletter Section */} +
+ +
+ + {/* Footer */} + +
+ ); +} -- 2.49.1 From e53deaaadf665b3b65748debc96b5023d8307201 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 12:29:24 +0000 Subject: [PATCH 3/6] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 37 ++++++++++++++++--------------------- 1 file changed, 16 insertions(+), 21 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 920efaf..57e0278 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -33,8 +33,7 @@ export default function ContactPage() { { name: "Blog", id: "/blog" } ]} button={{ - text: "Order on WhatsApp", - href: "https://wa.me/919876543210" + text: "Cart", href: "/cart" }} animateOnLoad={true} /> @@ -45,7 +44,7 @@ export default function ContactPage() { @@ -94,8 +93,7 @@ export default function ContactPage() { ); -} \ No newline at end of file +} -- 2.49.1 From 8fe427508454d83b5a98389d9052dd965cd00d81 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 12:29:25 +0000 Subject: [PATCH 4/6] Update src/app/layout.tsx --- src/app/layout.tsx | 27 +++++++-------------------- 1 file changed, 7 insertions(+), 20 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d52632f..9c7d088 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -7,37 +7,24 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], + variable: "--font-halant", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"], }); const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], + variable: "--font-inter", subsets: ["latin"], }); const poppins = Poppins({ - variable: "--font-poppins", - subsets: ["latin"], + variable: "--font-poppins", subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "Vanita Haria - Natural Handmade Cosmetics for Healthy Skin", - description: "Shop trusted, small-batch natural handmade skincare products. Affordable premium cosmetics tested for quality. Order on WhatsApp or checkout online.", - keywords: "natural cosmetics, handmade skincare, organic beauty products, affordable cosmetics, India, natural ingredients", - openGraph: { - title: "Vanita Haria - Natural Handmade Cosmetics", - description: "Trusted small-batch skincare crafted with pure natural ingredients. Shop affordable beauty products tested for quality and results.", - siteName: "Vanita Haria", - type: "website", - }, + title: "Vanita Haria - Natural Handmade Cosmetics for Healthy Skin", description: "Shop trusted, small-batch natural handmade skincare products. Affordable premium cosmetics tested for quality. Secure checkout with Razorpay.", keywords: "natural cosmetics, handmade skincare, organic beauty products, affordable cosmetics, India, natural ingredients", openGraph: { + title: "Vanita Haria - Natural Handmade Cosmetics", description: "Trusted small-batch skincare crafted with pure natural ingredients. Shop affordable beauty products tested for quality and results.", siteName: "Vanita Haria", type: "website"}, twitter: { - card: "summary_large_image", - title: "Vanita Haria - Natural Handmade Cosmetics", - description: "Trusted natural skincare. Affordable premium cosmetics. Order on WhatsApp.", - }, + card: "summary_large_image", title: "Vanita Haria - Natural Handmade Cosmetics", description: "Trusted natural skincare. Affordable premium cosmetics. Shop with secure checkout."}, robots: { index: true, follow: true, @@ -1428,4 +1415,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} -- 2.49.1 From 446e385f979ebfa8583662922389a2f28e7aa584 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 12:29:25 +0000 Subject: [PATCH 5/6] Update src/app/page.tsx --- src/app/page.tsx | 160 ++++++++++------------------------------------- 1 file changed, 32 insertions(+), 128 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 7b1aef1..6ec062b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -38,8 +38,7 @@ export default function HomePage() { { name: "Blog", id: "/blog" } ]} button={{ - text: "Order on WhatsApp", - href: "https://wa.me/919876543210" + text: "Cart", href: "/cart" }} animateOnLoad={true} /> @@ -52,7 +51,7 @@ export default function HomePage() { description="Natural Handmade Cosmetics for Healthy Skin" buttons={[ { text: "Shop Now", href: "/shop" }, - { text: "Order on WhatsApp", href: "https://wa.me/919876543210" } + { text: "Learn More", href: "#featured-products" } ]} imageSrc="http://img.b2bpic.net/free-photo/ecological-cleaning-products-concept_23-2148781951.jpg" imageAlt="Natural cosmetics and beauty products" @@ -70,64 +69,28 @@ export default function HomePage() { tagIcon={Sparkles} products={[ { - id: "1", - brand: "Vanita Haria", - name: "Pure Lip Balm - Rose", - price: "₹299", - rating: 5, - reviewCount: "342", - imageSrc: "http://img.b2bpic.net/free-photo/shea-butter-beauty-treatment-arrangement_23-2148963296.jpg?_wi=1", - imageAlt: "Pure Rose Lip Balm" + id: "1", brand: "Vanita Haria", name: "Pure Lip Balm - Rose", price: "₹299", rating: 5, + reviewCount: "342", imageSrc: "http://img.b2bpic.net/free-photo/shea-butter-beauty-treatment-arrangement_23-2148963296.jpg?_wi=1", imageAlt: "Pure Rose Lip Balm" }, { - id: "2", - brand: "Vanita Haria", - name: "Honey Glow Face Cream", - price: "₹599", - rating: 5, - reviewCount: "287", - imageSrc: "http://img.b2bpic.net/free-photo/high-angle-cream-container-plants_23-2149339775.jpg?_wi=1", - imageAlt: "Honey Glow Face Cream" + id: "2", brand: "Vanita Haria", name: "Honey Glow Face Cream", price: "₹599", rating: 5, + reviewCount: "287", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-cream-container-plants_23-2149339775.jpg?_wi=1", imageAlt: "Honey Glow Face Cream" }, { - id: "3", - brand: "Vanita Haria", - name: "Coconut Hair Oil", - price: "₹349", - rating: 5, - reviewCount: "156", - imageSrc: "http://img.b2bpic.net/free-photo/front-view-argan-product-assortment_23-2148955776.jpg?_wi=1", - imageAlt: "Pure Coconut Hair Oil" + id: "3", brand: "Vanita Haria", name: "Coconut Hair Oil", price: "₹349", rating: 5, + reviewCount: "156", imageSrc: "http://img.b2bpic.net/free-photo/front-view-argan-product-assortment_23-2148955776.jpg?_wi=1", imageAlt: "Pure Coconut Hair Oil" }, { - id: "4", - brand: "Vanita Haria", - name: "Natural Eyeshadow Palette", - price: "₹649", - rating: 5, - reviewCount: "203", - imageSrc: "http://img.b2bpic.net/free-photo/makeup-cosmetics_1388-193.jpg?_wi=1", - imageAlt: "Natural Eyeshadow Palette" + id: "4", brand: "Vanita Haria", name: "Natural Eyeshadow Palette", price: "₹649", rating: 5, + reviewCount: "203", imageSrc: "http://img.b2bpic.net/free-photo/makeup-cosmetics_1388-193.jpg?_wi=1", imageAlt: "Natural Eyeshadow Palette" }, { - id: "5", - brand: "Vanita Haria", - name: "Shea Butter Body Lotion", - price: "₹449", - rating: 5, - reviewCount: "198", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-fair-skinned-young-women-s-hands-holding-jars-organic-body-creams-care-moisturizing-concept_197531-31493.jpg?_wi=1", - imageAlt: "Shea Butter Body Lotion" + id: "5", brand: "Vanita Haria", name: "Shea Butter Body Lotion", price: "₹449", rating: 5, + reviewCount: "198", imageSrc: "http://img.b2bpic.net/free-photo/close-up-fair-skinned-young-women-s-hands-holding-jars-organic-body-creams-care-moisturizing-concept_197531-31493.jpg?_wi=1", imageAlt: "Shea Butter Body Lotion" }, { - id: "6", - brand: "Vanita Haria", - name: "Turmeric Clay Face Mask", - price: "₹399", - rating: 5, - reviewCount: "267", - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-taking-care-her-skin-applying-facial-mask_637285-3696.jpg?_wi=1", - imageAlt: "Turmeric Clay Face Mask" + id: "6", brand: "Vanita Haria", name: "Turmeric Clay Face Mask", price: "₹399", rating: 5, + reviewCount: "267", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-taking-care-her-skin-applying-facial-mask_637285-3696.jpg?_wi=1", imageAlt: "Turmeric Clay Face Mask" } ]} gridVariant="three-columns-all-equal-width" @@ -163,10 +126,7 @@ export default function HomePage() { useInvertedBackground={false} features={[ { - id: "1", - title: "Lip Care", - description: "Nourishing lip balms and tints made with natural oils and butters", - media: { + id: "1", title: "Lip Care", description: "Nourishing lip balms and tints made with natural oils and butters", media: { imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-woman-applying-lip-balm_23-2147893527.jpg" }, items: [ @@ -176,10 +136,7 @@ export default function HomePage() { reverse: false }, { - id: "2", - title: "Face Care", - description: "Gentle cleansers, creams, and masks for all skin types", - media: { + id: "2", title: "Face Care", description: "Gentle cleansers, creams, and masks for all skin types", media: { imageSrc: "http://img.b2bpic.net/free-photo/high-angle-view-beauty-creams-flowers-marble_23-2147879025.jpg?_wi=1" }, items: [ @@ -189,10 +146,7 @@ export default function HomePage() { reverse: true }, { - id: "3", - title: "Hair Care", - description: "Nourishing oils and treatments for healthy, lustrous hair", - media: { + id: "3", title: "Hair Care", description: "Nourishing oils and treatments for healthy, lustrous hair", media: { imageSrc: "http://img.b2bpic.net/free-photo/shampoo-bottle-butterfly-pea-flower-put-white-marble-background_1150-28099.jpg" }, items: [ @@ -202,10 +156,7 @@ export default function HomePage() { reverse: false }, { - id: "4", - title: "Baby Care", - description: "Gentle, safe products perfect for delicate baby skin", - media: { + id: "4", title: "Baby Care", description: "Gentle, safe products perfect for delicate baby skin", media: { imageSrc: "http://img.b2bpic.net/free-photo/mother-little-daughter-having-fun-home_1157-30282.jpg" }, items: [ @@ -215,10 +166,7 @@ export default function HomePage() { reverse: true }, { - id: "5", - title: "Makeup", - description: "Long-lasting, natural-looking makeup with skin-loving ingredients", - media: { + id: "5", title: "Makeup", description: "Long-lasting, natural-looking makeup with skin-loving ingredients", media: { imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-cosmetics-products-colored-background_23-2147891429.jpg" }, items: [ @@ -242,40 +190,16 @@ export default function HomePage() { useInvertedBackground={false} testimonials={[ { - id: "1", - title: "Finally Found My Skincare Holy Grail", - quote: "I was skeptical about natural cosmetics, but Vanita Haria's face cream has completely transformed my skin. No more irritation, and I can actually see visible improvement in just three weeks!", - name: "Priya Sharma", - role: "Marketing Professional, Mumbai", - imageSrc: "http://img.b2bpic.net/free-photo/woman-trying-listening-some-sound_1187-3768.jpg", - imageAlt: "Priya Sharma" + id: "1", title: "Finally Found My Skincare Holy Grail", quote: "I was skeptical about natural cosmetics, but Vanita Haria's face cream has completely transformed my skin. No more irritation, and I can actually see visible improvement in just three weeks!", name: "Priya Sharma", role: "Marketing Professional, Mumbai", imageSrc: "http://img.b2bpic.net/free-photo/woman-trying-listening-some-sound_1187-3768.jpg", imageAlt: "Priya Sharma" }, { - id: "2", - title: "Affordable Luxury That Actually Works", - quote: "The lip balm is my constant companion now. It smells amazing, works beautifully, and at this price point, it's practically a steal. Ordering more for my friends!", - name: "Anjali Desai", - role: "Graphic Designer, Bangalore", - imageSrc: "http://img.b2bpic.net/free-photo/young-caucasian-woman-holding-shopping-bags-make-selfie-by-camera-clothing-store_839833-1916.jpg", - imageAlt: "Anjali Desai" + id: "2", title: "Affordable Luxury That Actually Works", quote: "The lip balm is my constant companion now. It smells amazing, works beautifully, and at this price point, it's practically a steal. Ordering more for my friends!", name: "Anjali Desai", role: "Graphic Designer, Bangalore", imageSrc: "http://img.b2bpic.net/free-photo/young-caucasian-woman-holding-shopping-bags-make-selfie-by-camera-clothing-store_839833-1916.jpg", imageAlt: "Anjali Desai" }, { - id: "3", - title: "Best Hair Oil I've Ever Used", - quote: "After using their coconut hair oil for two months, my hair feels stronger and healthier. The ingredient list is transparent and actually makes sense. This is the real deal.", - name: "Neha Kapoor", - role: "Fitness Instructor, Delhi", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-business-woman_23-2148603029.jpg", - imageAlt: "Neha Kapoor" + id: "3", title: "Best Hair Oil I've Ever Used", quote: "After using their coconut hair oil for two months, my hair feels stronger and healthier. The ingredient list is transparent and actually makes sense. This is the real deal.", name: "Neha Kapoor", role: "Fitness Instructor, Delhi", imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-business-woman_23-2148603029.jpg", imageAlt: "Neha Kapoor" }, { - id: "4", - title: "Safe for My Sensitive Baby Skin", - quote: "As a new mom, finding truly gentle products was crucial. Vanita Haria's baby care range is the only thing my son's delicate skin tolerates. Worth every penny!", - name: "Meera Gupta", - role: "Mother & Entrepreneur, Pune", - imageSrc: "http://img.b2bpic.net/free-photo/woman-using-face-roller-her-beauty-routine_23-2150166387.jpg", - imageAlt: "Meera Gupta" + id: "4", title: "Safe for My Sensitive Baby Skin", quote: "As a new mom, finding truly gentle products was crucial. Vanita Haria's baby care range is the only thing my son's delicate skin tolerates. Worth every penny!", name: "Meera Gupta", role: "Mother & Entrepreneur, Pune", imageSrc: "http://img.b2bpic.net/free-photo/woman-using-face-roller-her-beauty-routine_23-2150166387.jpg", imageAlt: "Meera Gupta" } ]} /> @@ -293,32 +217,16 @@ export default function HomePage() { useInvertedBackground={true} metrics={[ { - id: "1", - value: "5000", - title: "Happy Customers", - description: "Across India trusting our products", - icon: Users + id: "1", value: "5000", title: "Happy Customers", description: "Across India trusting our products", icon: Users }, { - id: "2", - value: "25", - title: "Product Range", - description: "Handmade natural cosmetics", - icon: Package + id: "2", value: "25", title: "Product Range", description: "Handmade natural cosmetics", icon: Package }, { - id: "3", - value: "100", - title: "Pure Natural", - description: "Ingredients without chemicals", - icon: Leaf + id: "3", value: "100", title: "Pure Natural", description: "Ingredients without chemicals", icon: Leaf }, { - id: "4", - value: "4.9", - title: "Average Rating", - description: "Out of 5 stars from verified buyers", - icon: Star + id: "4", value: "4.9", title: "Average Rating", description: "Out of 5 stars from verified buyers", icon: Star } ]} /> @@ -344,8 +252,7 @@ export default function HomePage() { ); -} \ No newline at end of file +} -- 2.49.1 From ee2b933cf1f8e89be6b87a20330a9cf7b4fc6a73 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 12:29:26 +0000 Subject: [PATCH 6/6] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 95 ++++++++++++------------------------------- 1 file changed, 27 insertions(+), 68 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 474da1f..03994b7 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -33,8 +33,7 @@ export default function ShopPage() { { name: "Blog", id: "/blog" } ]} button={{ - text: "Order on WhatsApp", - href: "https://wa.me/919876543210" + text: "Cart", href: "/cart" }} animateOnLoad={true} /> @@ -48,64 +47,28 @@ export default function ShopPage() { tag="All Products" products={[ { - id: "1", - brand: "Vanita Haria", - name: "Pure Lip Balm - Rose", - price: "₹299", - rating: 5, - reviewCount: "342", - imageSrc: "http://img.b2bpic.net/free-photo/shea-butter-beauty-treatment-arrangement_23-2148963296.jpg?_wi=2", - imageAlt: "Pure Rose Lip Balm" + id: "1", brand: "Vanita Haria", name: "Pure Lip Balm - Rose", price: "₹299", rating: 5, + reviewCount: "342", imageSrc: "http://img.b2bpic.net/free-photo/shea-butter-beauty-treatment-arrangement_23-2148963296.jpg?_wi=2", imageAlt: "Pure Rose Lip Balm" }, { - id: "2", - brand: "Vanita Haria", - name: "Honey Glow Face Cream", - price: "₹599", - rating: 5, - reviewCount: "287", - imageSrc: "http://img.b2bpic.net/free-photo/high-angle-cream-container-plants_23-2149339775.jpg?_wi=2", - imageAlt: "Honey Glow Face Cream" + id: "2", brand: "Vanita Haria", name: "Honey Glow Face Cream", price: "₹599", rating: 5, + reviewCount: "287", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-cream-container-plants_23-2149339775.jpg?_wi=2", imageAlt: "Honey Glow Face Cream" }, { - id: "3", - brand: "Vanita Haria", - name: "Coconut Hair Oil", - price: "₹349", - rating: 5, - reviewCount: "156", - imageSrc: "http://img.b2bpic.net/free-photo/front-view-argan-product-assortment_23-2148955776.jpg?_wi=2", - imageAlt: "Pure Coconut Hair Oil" + id: "3", brand: "Vanita Haria", name: "Coconut Hair Oil", price: "₹349", rating: 5, + reviewCount: "156", imageSrc: "http://img.b2bpic.net/free-photo/front-view-argan-product-assortment_23-2148955776.jpg?_wi=2", imageAlt: "Pure Coconut Hair Oil" }, { - id: "4", - brand: "Vanita Haria", - name: "Natural Eyeshadow Palette", - price: "₹649", - rating: 5, - reviewCount: "203", - imageSrc: "http://img.b2bpic.net/free-photo/makeup-cosmetics_1388-193.jpg?_wi=2", - imageAlt: "Natural Eyeshadow Palette" + id: "4", brand: "Vanita Haria", name: "Natural Eyeshadow Palette", price: "₹649", rating: 5, + reviewCount: "203", imageSrc: "http://img.b2bpic.net/free-photo/makeup-cosmetics_1388-193.jpg?_wi=2", imageAlt: "Natural Eyeshadow Palette" }, { - id: "5", - brand: "Vanita Haria", - name: "Shea Butter Body Lotion", - price: "₹449", - rating: 5, - reviewCount: "198", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-fair-skinned-young-women-s-hands-holding-jars-organic-body-creams-care-moisturizing-concept_197531-31493.jpg?_wi=2", - imageAlt: "Shea Butter Body Lotion" + id: "5", brand: "Vanita Haria", name: "Shea Butter Body Lotion", price: "₹449", rating: 5, + reviewCount: "198", imageSrc: "http://img.b2bpic.net/free-photo/close-up-fair-skinned-young-women-s-hands-holding-jars-organic-body-creams-care-moisturizing-concept_197531-31493.jpg?_wi=2", imageAlt: "Shea Butter Body Lotion" }, { - id: "6", - brand: "Vanita Haria", - name: "Turmeric Clay Face Mask", - price: "₹399", - rating: 5, - reviewCount: "267", - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-taking-care-her-skin-applying-facial-mask_637285-3696.jpg?_wi=2", - imageAlt: "Turmeric Clay Face Mask" + id: "6", brand: "Vanita Haria", name: "Turmeric Clay Face Mask", price: "₹399", rating: 5, + reviewCount: "267", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-taking-care-her-skin-applying-facial-mask_637285-3696.jpg?_wi=2", imageAlt: "Turmeric Clay Face Mask" } ]} gridVariant="three-columns-all-equal-width" @@ -131,19 +94,19 @@ export default function ShopPage() { faqsAnimation="slide-up" faqs={[ { - id: "1", - title: "Are your products suitable for all skin types?", - content: "Yes! Our formulations are designed to work with sensitive, dry, oily, and combination skin. Each product page includes specific skin type recommendations. We recommend patch testing first if you have extremely sensitive skin." + id: "1", title: "Are your products suitable for all skin types?", content: "Yes! Our formulations are designed to work with sensitive, dry, oily, and combination skin. Each product page includes specific skin type recommendations. We recommend patch testing first if you have extremely sensitive skin." }, { - id: "2", - title: "How long does delivery take?", - content: "Standard delivery within Mumbai and Tier-1 cities takes 2-3 business days. Pan-India delivery typically takes 5-7 business days. We offer expedited shipping options for urgent orders." + id: "2", title: "How long does delivery take?", content: "Standard delivery within Mumbai and Tier-1 cities takes 2-3 business days. Pan-India delivery typically takes 5-7 business days. We offer expedited shipping options for urgent orders." }, { - id: "3", - title: "What's your return policy?", - content: "We offer a 15-day money-back guarantee if you're not satisfied with any product. Simply contact us with your order details and reason for return." + id: "3", title: "What's your return policy?", content: "We offer a 15-day money-back guarantee if you're not satisfied with any product. Simply contact us with your order details and reason for return." + }, + { + id: "4", title: "What payment methods do you accept?", content: "We accept all major payment methods including credit cards, debit cards, UPI, net banking, and digital wallets through our secure Razorpay payment gateway. Your payment information is encrypted and safe." + }, + { + id: "5", title: "Is checkout secure?", content: "Yes! We use industry-standard encryption and Razorpay's secure payment gateway to protect your personal and payment information. Your data is never stored on our servers." } ]} /> @@ -154,8 +117,7 @@ export default function ShopPage() { ); -} \ No newline at end of file +} -- 2.49.1