import wixData from 'wix-data'; let skip = 0; const limit = 9; let isLoading = false; $w.onReady(() => { loadMoreProducts(); // OPTIONAL: If using button for load more // $w("#loadMore").onClick(() => { // loadMoreProducts(); // }); // Auto scroll trigger $w("#repeater1").onViewportEnter(() => { loadMoreProducts(); }); }); function loadMoreProducts() { if (isLoading) return; isLoading = true; wixData.query("Products") .skip(skip) .limit(limit) .find() .then((results) => { if (results.items.length > 0) { const newItems = results.items; const currentItems = $w("#repeater1").data || []; $w("#repeater1").data = [...currentItems, ...newItems]; skip += limit; } else { // No more products $w("#loadMore").hide(); // if using button } isLoading = false; }); } MetroNeeds.in – Smart Shopping for Domestic Needs & Lifestyle Deals Across India
top of page

NEW ARRIVELS EVERY DAY!

Discover W.f.h Tech

Explore Domestic Gadgets

Uncover the latest innovations in W.f.h desk tech, domestic tech, and in-car tech. From smart home devices to cutting-edge office solutions, My Site is your gateway to a tech-savvy lifestyle. Stay ahead of the curve with our curated selection of products designed to enhance your daily routines and streamline your tasks. Whether you're working from home, managing household chores, or on the go, we've got you covered with the best tech gadgets tailored for your needs.

Best sellers

Digital art exhibit

Our Story

At MetroNeeds, we are passionate about simplifying your everyday life through innovative automations. Our carefully selected products cater to the diverse needs of modern households, remote workers, and commuters. Discover a seamless blend of functionality, style, and convenience in our range of domestic, work-from-home, and in-car tech solutions.

FAQs

Shipping & Returns

Experience fast and reliable shipping on all your MetroNeeds orders. Our hassle-free returns ensure your complete satisfaction with every purchase.

Product Care Guidelines

To prolong the lifespan of your tech automations, follow our simple care instructions. Keep them clean and well-maintained for long-lasting performance.

Customization Options

We understand that your needs are unique. Contact us for personalized customization options and tailored recommendations for your specific requirements.

Limited Time Offer

Don't miss our limited time promotion! Receive a complimentary tech accessory with every purchase over $50. Elevate your tech game today.

Everything's Better With The Best Of Friends!

Connect with Us

Have Questions? We're Here to Help

bottom of page
import wixData from 'wix-data'; let skip = 0; const limit = 9; let isLoading = false; $w.onReady(() => { loadMoreProducts(); // OPTIONAL: If using button for load more // $w("#loadMore").onClick(() => { // loadMoreProducts(); // }); // Auto scroll trigger $w("#repeater1").onViewportEnter(() => { loadMoreProducts(); }); }); function loadMoreProducts() { if (isLoading) return; isLoading = true; wixData.query("Products") .skip(skip) .limit(limit) .find() .then((results) => { if (results.items.length > 0) { const newItems = results.items; const currentItems = $w("#repeater1").data || []; $w("#repeater1").data = [...currentItems, ...newItems]; skip += limit; } else { // No more products $w("#loadMore").hide(); // if using button } isLoading = false; }); }