(function () {
const schemaData = {
"@context": "https://schema.org",
"@type": "Product",
"name": "MG Makeovers",
"url": "https://www.mgmakeovers.com/",
"brand": {
"@type": "Brand",
"name": "MG Makeovers"
},
"description": "Gurgaon's top-rated beauty studio for makeup, nails, hair, lashes, and skincare. Discover expert artistry and flawless transformations tailored to your style",
"image": [
"https://static.wixstatic.com/media/0e2fc5_68e5ca973908454e9e2e39168510e86d~mv2.jpg/v1/fill/w_476,h_412,al_c/0e2fc5_68e5ca973908454e9e2e39168510e86d~mv2.jpg"
],
"mpn": "119119",
"sku": "1191191",
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": 4.8,
"reviewCount": 753,
"bestRating": 5,
"worstRating": 1
},
"review": {
"@type": "Review",
"reviewBody": "I had an amazing experience at MG Makeovers Studio, Salon & Clinic!",
"datePublished": "2025-10-10",
"author": {
"@type": "Person",
"name": "Shweta Parmmar"
},
"reviewRating": {
"@type": "Rating",
"ratingValue": 5
}
}
};
function injectSchema() {
if (document.querySelector('script[data-schema="mg-makeovers"]')) return;
const script = document.createElement("script");
script.type = "application/ld+json";
script.setAttribute("data-schema", "mg-makeovers");
script.text = JSON.stringify(schemaData, null, 2);
document.head.appendChild(script);
}
if (document.body) {
injectSchema();
} else {
const observer = new MutationObserver(function (_, obs) {
if (document.body) {
injectSchema();
obs.disconnect();
}
});
observer.observe(document.documentElement, { childList: true, subtree: true });
}
})();
top of page
bottom of page