// Capture IP and User Agent var ipAddress = ''; // Use a service to fetch IP var userAgent = navigator.userAgent; // Example of fetching IP using a public API fetch('https://api.ipify.org?format=json') .then(response => response.json()) .then(data => { ipAddress = data.ip; // Push to Data Layer window.dataLayer = window.dataLayer || []; window.dataLayer.push({ 'event': 'pinterestEvent', 'userData': { 'ip_address': ipAddress, 'user_agent': userAgent } }); });
top of page
Marly Earrings- Silver

Marly Earrings- Silver

SKU: 0535cadd

Make a bold statement with the Marly Earrings – the perfect accessory for those who love to stand out. These silver geometric earrings are crafted from high-quality stainless steel, offering a sleek and modern design that complements any outfit. With a versatile 1.5-inch diameter, these earrings strike the perfect balance between bold and subtle, making them ideal for both everyday wear and special occasions.

 

Key Features:

  • Modern Geometric Design: Eye-catching shapes that add a trendy twist to your style
  • Premium Material: Made from durable stainless steel for long-lasting shine and hypoallergenic wear
  • Perfect Size: 1.5" diameter – ideal for both statement looks and subtle elegance
  • Versatile Style: Effortlessly pairs with casual, business, or evening attire
  • Lightweight Comfort: Designed for all-day wear without weighing you down

 

Why You'll Love Them:

  • Stand-Out Style: Unique geometric design makes these earrings the perfect accessory to elevate any outfit
  • Durable & Hypoallergenic: Stainless steel construction ensures durability and comfort, even for sensitive ears
  • Effortless Elegance: These earrings are versatile enough to wear from day to night, adding a sophisticated touch to your look

 

How to Style:

Pair the Marly Earrings with a sleek ponytail or updo to showcase their geometric design, or wear them with loose waves for a chic, modern vibe. Perfect for adding a statement to a simple dress, a tailored blazer, or your favorite casual outfit.

 

Elevate your jewelry game with the Marly Silver Geometric Earrings. Order now to add a touch of modern sophistication to your collection!

 

Shop Similar Styles: Check out our Geometric Jewelry Collection for statement pieces.

    $32.50Price
    No Reviews YetShare your thoughts. Be the first to leave a review.
    • Instagram
    • Pinterest

    ©2024 by B You. All Rights Reserved.

    539 W. Commerce St #5729   Dallas, TX 75208

    bottom of page
    // Ensure that the script only runs on the order confirmation page if (window.location.href.indexOf("order-confirmation") > -1) { // Assuming Wix provides an API or a way to access order data (e.g., email from the order object) var email = ''; // You will need to replace this with the actual method to fetch email from the order (e.g., Wix's API or Order object) // Check if email is available before proceeding if (email) { // Function to hash email using SHA256 function hashEmail(email) { var sha256 = new Hashes.SHA256(); return sha256.hex(email); } // Hash the captured email var hashedEmail = hashEmail(email); // Send the hashed email to Pinterest window.dataLayer = window.dataLayer || []; window.dataLayer.push({ 'event': 'pinterestEvent', 'userData': { 'email': hashedEmail } }); // Debugging: Log the hashed email to the console console.log("Hashed Email Sent to Pinterest: " + hashedEmail); } }