/* Add custom Js code below */ /* Map Component (Placement: After Brands Section) */ // Find the element with class name "brands" var descriptiveElement = document.querySelector('.brands'); // Check if the element is found if (descriptiveElement) { // Create a new section element var newSection = document.createElement('section'); newSection.className = 'store-location'; // Set inner HTML of the new section with your provided code newSection.innerHTML = `

زورونا في أحد فروعنا

   شمال أو شرق الرياض

`; // Insert the new section after the descriptive element descriptiveElement.parentNode.insertBefore(newSection, descriptiveElement.nextSibling); } else { console.error('Element with class name "brand" not found.'); }