Salajeet

(250 reviews)
Rs.2,900.00
150 people bought this
43 people viewing now

Key Features

  • Premium quality materials
  • Eco-friendly and sustainable
  • Handcrafted with care
  • Lifetime warranty included
Quality Guaranteed
Premium quality products
Secure Payment
100% secure transactions
Free Shipping
On orders over $50
Easy Returns
30-day return policy

Customer Reviews

Sarah M.
Verified Purchase

Absolutely love this product! The quality exceeded my expectations and it arrived quickly. Highly recommend!

2 days ago
John D.
Verified Purchase

Great value for money. Works exactly as described. Customer service was also very helpful.

1 week ago
Emily R.
Verified Purchase

Very satisfied with my purchase. The product is well-made and looks great. Would buy again!

2 weeks ago
Secure Checkout
Fast Delivery
Money Back Guarantee
SALAJEJT KE BNA KR DO PIX WITH PROPER BOX PACKING
Salajeet
Rs.2,900.00
import React, { useState } from 'react'; import { MOCK_PRODUCT } from './constants'; import ProductGallery from './components/ProductGallery'; import QuantitySelector from './components/QuantitySelector'; import BenefitsList from './components/BenefitsList'; import SocialProof from './components/SocialProof'; import { ShoppingCart, Star, Check, ArrowRight } from 'lucide-react'; const App: React.FC = () => { const [quantity, setQuantity] = useState(1); const [isAdding, setIsAdding] = useState(false); const [added, setAdded] = useState(false); const product = MOCK_PRODUCT; const discountPercentage = product.compareAtPrice ? Math.round(((product.compareAtPrice - product.price) / product.compareAtPrice) * 100) : 0; const handleAddToCart = () => { setIsAdding(true); // Simulating API call to Shopify /cart/add.js setTimeout(() => { console.log("Adding to cart:", { id: product.id, quantity: quantity }); setIsAdding(false); setAdded(true); // Reset success message after 3 seconds setTimeout(() => setAdded(false), 3000); }, 800); }; return (
{/* Fake Navigation Bar for Context */}
{/* Left Column: Image Gallery */}
{/* Right Column: Product Details */}
{/* Breadcrumbs / Badges */}
New Arrival
(428 reviews)
{/* Title */}

{product.title}

{/* Price */}
${product.price} {product.compareAtPrice && ( <> ${product.compareAtPrice} Save {discountPercentage}% )}
{/* Description */}

{product.shortDescription}

  • Premium Memory Foam Cushions
  • Active Noise Cancellation 2.0
  • Ultra-low Latency Bluetooth 5.3
{/* Social Proof (Live Viewers & Sales) */} {/* Desktop: Add to Cart Form */}

Guaranteed safe checkout. We accept all major credit cards.

{/* Benefits List */}
{/* Mobile: Sticky Add to Cart Bar */}
); }; export default App;