/* Add custom Js code below */
// Define the HTML snippet you want to inject
const pinLink = `
بنترست
`;
// Select the target element
const socialLinksContainer = document.querySelector('.store-footer .social-links .social-links');
// Inject the HTML snippet into the target element
if (socialLinksContainer) {
socialLinksContainer.innerHTML += pinLink;
}