Salajeet
Rs.2,900.00
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
Absolutely love this product! The quality exceeded my expectations and it arrived quickly. Highly recommend!
2 days ago
Great value for money. Works exactly as described. Customer service was also very helpful.
1 week ago
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
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 */}
{/* Mobile: Sticky Add to Cart Bar */}
);
};
export default App;
{/* Left Column: Image Gallery */}
{/* Right Column: Product Details */}
{/* Breadcrumbs / Badges */}
{/* Social Proof (Live Viewers & Sales) */}
{/* Desktop: Add to Cart Form */}
{/* Benefits List */}
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
Guaranteed safe checkout. We accept all major credit cards.