
Home, Office Property Maintenance & Facilities Management
Keep your home or office in top shape with our reliable maintenance services.
import { session } from 'wix-storage'; $w.onReady(() => { // Select all images on the page (adjust selector if you want only specific images) const images = $w('Image'); let imageUrls = []; images.forEach(img => { if (img.src) { imageUrls.push(img.src); } }); // Build ImageObject JSON-LD for each image const imageObjects = imageUrls.map(url => { return { "@type": "ImageObject", "contentUrl": url, "description": "Image from AquaTerra site", "license": "https://www.aquaterra.ae/", "acquireLicensePage": "https://www.aquaterra.ae/" }; }); // Build full JSON-LD script with @graph for multiple images const jsonLd = { "@context": "https://schema.org", "@graph": imageObjects }; // Inject JSON-LD script into the page head const script = document.createElement('script'); script.type = 'application/ld+json'; script.text = JSON.stringify(jsonLd); document.head.appendChild(script); });
Keep your home or office in top shape with our reliable maintenance services.