About Us | Arva
top of page
ARVA FINAL-03.png

About Arva

ARVA BY PALAK AGRAWAL is a brand born from a deep personal connection, inspired by the initials of the designer’s parents, symbolizing legacy and innovation.

We craft garments that embody the dynamic movement of wind, blending futuristic fluidity with timeless design. Our approach merges the digital and physical worlds, creating urban sophistication through phygital innovation.

With a focus on sustainability, versatility, and cutting-edge technology, ARVA redefines modern fashion for those who value both luxury and functionality.

DSC_2804.webp
bottom of page
$w.onReady(() => { // Select all images that need lazy loading const lazyImages = $w('Image').filter(img => img.link === null); // Filter images with no link or specific criteria // Function to lazy load an image function lazyLoadImage(img) { const dataSrc = img.src; // Assuming the placeholder src is initially blank or a loading image const actualSrc = img.dataSrc; // Assuming you set the real source in a custom attribute (e.g., "dataSrc") if (actualSrc) { img.src = actualSrc; // Set the actual image source img.dataSrc = ''; // Clear the data source to avoid re-triggering } } // Attach `onViewportEnter` to each lazy-load image lazyImages.forEach(img => { img.onViewportEnter(() => lazyLoadImage(img)); }); });