{"version":3,"file":"siteMetadata.B8K6D8IT.mjs","names":[],"sources":["https:/framerusercontent.com/modules/60Dx4kDOTkQFwkR8Ydb4/OeJTV8e0nlMZ1MN7UGEL/siteMetadata.js"],"sourcesContent":["// Generated by Framer (c07a8c1)\nexport default function metadata(params,activeLocale){return{customHTMLBodyStart:'<div id=\"custom-redirect-loader\"></div>\\n<!-- Google Tag Manager (noscript) -->\\n<noscript><iframe src=\"https://www.googletagmanager.com/ns.html?id=GTM-TXZKC5RC\" height=\"0\" width=\"0\" style=\"display:none;visibility:hidden\"></iframe></noscript>\\n<!-- End Google Tag Manager\\xa0(noscript)\\xa0-->',customHTMLHeadEnd:'<script type=\"application/ld+json\">\\n{\\n  \"@context\": \"https://schema.org\",\\n  \"@type\": \"Organization\",\\n   \"name\": \"Be Unique Group\",\\n  \"url\": \"https://www.beuniquegroup.com/\",\\n  \"image\": \"https://framerusercontent.com/images/im0JLk5FbMpozQsLjupUCOkQ.jpg?scale-down-to=1024\",\\n   \"email\": \"hello@beuniquegroup.com\",\\n  \"telePhone\": \"+971 4 834 7391\",\\n  \"address\": {\\n    \"@type\": \"PostalAddress\",\\n    \"streetAddress\": \"Al Marsa Street, 32nd Floor, Marina Plaza\",\\n    \"addressLocality\": \"DXB\",\\n    \"addressCountry\": \"AE\",\\n    \"addressRegion\": \"Dubai\",\\n    \"postalCode\": \"00000\"\\n  },\\n  \\n  \"openingHours\": \"Mo,Tu,We,Th,Fr 09:00 - 18:00,Sa, Su Clo\",\\n  \"geo\": {\\n    \"@type\": \"GeoCoordinates\",\\n    \"latitude\": \"25.076019928168247\",\\n    \"longitude\": \"55.14149869839218\"\\n  },\\n  \"priceRange\": \"$$$-$$$$\",\\n  \"hasmap\": \"https://maps.app.goo.gl/mfxvVek44pN3rCvWA\",\\n  \"sameAs\": [\\n    \"https://www.linkedin.com/company/be-unique-group/\",\\n    \"https://twitter.com/beuniqueuae\"\\n  ],\\n  \"aggregateRating\": {\\n                    \"@type\": \"AggregateRating\",\\n                    \"ratingValue\": \"4.5\",\\n                    \"reviewCount\": \"133\"\\n            },\\n\"review\": [\\n{\\n\"@type\": \"Review\",\\n\"datePublished\": \"3-09-2023\",\\n\"author\": {\\n\"@type\": \"Person\",\\n\"name\": \"Vyom Choudhari\"\\n},\\n\"reviewRating\": {\\n\"@type\": \"Rating\",\\n\"ratingValue\": \"5\"\\n},\\n\"reviewBody\": \"Exciting opportunity and wonderful people to work with. A very creative and professional environment where artistic ideas are expressed. Love the team!\"\\n},\\n{\\n\"@type\": \"Review\",\\n\"datePublished\": \"27-09-2023\",\\n\"author\": {\\n\"@type\": \"Person\",\\n\"name\": \"jamie bassi\"\\n},\\n\"reviewRating\": {\\n\"@type\": \"Rating\",\\n\"ratingValue\": \"5\"\\n},\\n\"reviewBody\": \"Be Unique are absolutely fantastic, we’ve been working together for almost 4 years and never once has their service to us ever slacked. The daily updates and execution of our targets set is really top class, I couldn’t recommend them enough!\"\\n}\\n] \\n}\\n</script>\\n\\n\\n\\n\\n<!-- Google Ads -->\\n<script>\\ndocument.addEventListener(\"DOMContentLoaded\", function() {\\n    let urlParams = new URLSearchParams(window.location.search);\\n    console.log(urlParams);\\n    if (urlParams.has(\\'utm_source\\')) {\\n        sessionStorage.setItem(\\'utm_source\\', urlParams.get(\\'utm_source\\'));\\n        sessionStorage.setItem(\\'utm_medium\\', urlParams.get(\\'utm_medium\\'));\\n                sessionStorage.setItem(\\'utm_campaign\\', urlParams.get(\\'utm_campaign\\'));\\n    }\\n});\\n</script>\\n',customHTMLHeadStart:\"<!-- Google tag (gtag.js) -->\\n<script async=\\\"\\\" src=\\\"https://www.googletagmanager.com/gtag/js?id=G-JRRL4RCEY9\\\"></script>\\n<script>\\n  window.dataLayer = window.dataLayer || [];\\n  function gtag(){dataLayer.push(arguments);}\\n  gtag('js', new Date());\\n\\n  gtag('config', 'G-JRRL4RCEY9');\\n</script>\\n\\n<!--  -->\\n\\n<style>\\n  #custom-redirect-loader {\\n    position: fixed;\\n    inset: 0;\\n    background: white;\\n    display: flex;\\n    align-items: center;\\n    justify-content: center;\\n    font-family: sans-serif;\\n    font-size: 20px;\\n    z-index: 9999;\\n  }\\n</style>\\n\\n\\n<script>\\n(function checkAndRedirect() {\\n  const jsonUrl = 'https://redirects.beuniquegroup.com/beuniqueredirects.json';\\n  const cacheKey = 'redirect_json_cache';\\n  const timestampKey = 'redirect_json_timestamp';\\n  const maxAge = 30 * 60 * 1000; // 30 minutes\\n\\n  async function getRedirectData() {\\n    const now = Date.now();\\n    const cachedData = localStorage.getItem(cacheKey);\\n    const cachedTime = parseInt(localStorage.getItem(timestampKey), 10) || 0;\\n\\n    // Use cached JSON if still valid\\n    if (cachedData && now - cachedTime < maxAge) {\\n      return JSON.parse(cachedData);\\n    }\\n\\n    // Else fetch fresh JSON and store\\n    const response = await fetch(jsonUrl, { cache: 'no-store' });\\n    if (!response.ok) throw new Error('Failed to fetch redirect JSON');\\n\\n    const json = await response.json();\\n    localStorage.setItem(cacheKey, JSON.stringify(json));\\n    localStorage.setItem(timestampKey, now.toString());\\n         console.log('return');\\n    return json;\\n  }\\n\\nfunction getCurrentPath() {\\n    return new URL(window.location.href).pathname;\\n}\\n\\n    function attemptRemoveLoader(retryCount = 0) {\\n      console.log(retryCount);\\n      const loader = document.getElementById('custom-redirect-loader');\\n      if (loader) {\\n        loader.remove();\\n        return true;\\n      } else if (retryCount < 50) {\\n        setTimeout(() => attemptRemoveLoader(retryCount + 1), 50); // Retry after 50ms\\n      }\\n      return false;\\n    }\\n\\n<!--  -->\\ngetRedirectData()\\n  .then(redirects => {\\n    const filename = getCurrentPath();\\n    const redirectTarget = redirects[filename];\\n   console.log(redirectTarget)\\n   console.log(filename)\\n    if (redirectTarget) {\\n      const currentPath = window.location.pathname;\\n      if (currentPath !== redirectTarget) {\\n        console.log('Redirecting to:', redirectTarget);\\n        window.location.replace(redirectTarget);\\n      } else {\\n        console.log('Already on the target page, not redirecting.');\\n        attemptRemoveLoader();\\n      }\\n    } else {\\n      console.log('No redirect needed.');\\n      attemptRemoveLoader();\\n    }\\n  })\\n  .catch(err => {\\n    console.error('Redirect check failed:', err);\\n    attemptRemoveLoader();\\n  });\\n\\n\\n\\n\\n\\n<!--  -->\\n})();\\n</script>\\n\\n<!-- Google Tag Manager -->\\n<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':\\nnew Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],\\nj=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=\\n'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);\\n})(window,document,'script','dataLayer','GTM-TXZKC5RC');</script>\\n<!-- End Google\\xa0Tag\\xa0Manager\\xa0-->\",description:\"We support business through expert digital marketing services in Dubai since 2008. Led by our Founder and CEO Dariush Soudi, we help our clients achieve the online presence they deserve.\",favicon:\"https://framerusercontent.com/assets/MtklB0Evs1fe4dxs6O3AdfLn7lA.png\",robots:\"max-image-preview:large\",socialImage:\"https://framerusercontent.com/assets/jYHEZafg3LkzQME6KDo2pFMJFbI.jpeg\",title:\"Be Unique Group | Sales & Marketing Consultants in Dubai (UAE)\"};}export const metadataVersion=1;\nexport const __FramerMetadata__ = {\"exports\":{\"metadataVersion\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"2DACA,SAAwB,EAAS,EAAO,EAAa,CAAC,MAAM,CAAC,oBAAoB;;;kDAAuS,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAu8E,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0CAA8uG,YAAY,6LAA6L,QAAQ,uEAAuE,OAAO,0BAA0B,YAAY,wEAAwE,MAAM,gEAAiE,CAAE"}