{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/wlsd4eByzPq7Ua7XiLiy/zJF0QuPAtHKzvHNGTSy0/siteMetadata.js"],
  "sourcesContent": ["// Generated by Framer (46c9ef7)\nexport default function metadata(params,activeLocale){return{customHTMLBodyEnd:\"<script>\\n// Function to show the popup with fade-in effect\\nconst showPopup = () => {\\n  const popup = document.getElementById(\\\"popup\\\");\\n  popup.style.display = \\\"flex\\\"; // Show the popup\\n  setTimeout(() => {\\n    popup.style.opacity = 1; // Fade in\\n  }, 10); // Small delay to trigger transition\\n};\\n\\n// Function to close the popup\\nconst closePopup = () => {\\n  const popup = document.getElementById(\\\"popup\\\");\\n  popup.style.opacity = 0; // Fade out\\n  setTimeout(() => {\\n    popup.style.display = \\\"none\\\"; // Hide the popup after fade-out\\n  }, 500); // Match the duration of the fade-out transition\\n};\\n\\n// Check if the URL contains the 'redirected_from=kirepo' parameter\\nconst urlParams = new URLSearchParams(window.location.search);\\nif (urlParams.get('redirected_from') === 'kirepo') {\\n  // Run the showPopup function when the page loads\\n  window.onload = () => {\\n    showPopup();\\n    document.getElementById(\\\"closePopup\\\").addEventListener(\\\"click\\\", closePopup);\\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-KVGDPQWF');</script>\\n<!-- End Google Tag Manager -->\\n\t<!-- Start cookieyes banner -->\\n\t<script id=\\\"cookieyes\\\" type=\\\"text/javascript\\\" src=\\\"https://cdn-cookieyes.com/client_data/aa5569c65a5c0f7ff94ff4eb/script.js\\\"></script>\\n\t<!-- End cookieyes banner -->\\n\t\",customHTMLBodyStart:'<!-- Google Tag Manager (noscript) -->\\n<noscript><iframe src=\"https://www.googletagmanager.com/ns.html?id=GTM-KVGDPQWF\" height=\"0\" width=\"0\" style=\"display:none;visibility:hidden\"></iframe></noscript>\\n<!-- End Google Tag Manager (noscript) -->\\n<div id=\"popup\" class=\"popup\" style=\"display: none;\">\\n  <div class=\"popup-content\">\\n    <h1>Welcome to the new Kirepo \uD83C\uDF89</h1>\\n    <p>We\u2019ve rebranded to bring you a new and improved experience!</p>\\n    <div class=\"features\">\\n      <span>\uD83E\uDD29 <strong>Exciting New Design</strong>-  Clean, modern, and faster!</span>\\n      <span>\uD83C\uDF1F <strong>All in one place</strong>- \\n       What we offer, clearly defined.</span>\\n      <span>\uD83D\uDE4C <strong>Same Trusted Team</strong>-  Now better than ever!</span>\\n    </div>\\n    <button id=\"closePopup\">Explore now</button>\\n  </div>\\n</div>\\n<style>\\n/* Popup Container */\\n/* General Popup Styling */\\n.popup {\\n    position: fixed;\\n    top: 0;\\n    left: 0;\\n    display: flex;\\n    width: 100%;\\n    height: 100%;\\n    background-color: rgba(0, 0, 0, 0.7);\\n    justify-content: center;\\n    align-items: center;\\n    backdrop-filter: blur(5px);\\n    z-index: 9999;\\n}\\n\\n/* Popup Content */\\n.popup-content {\\n    background-color: #000000c7; /* Slightly more opaque */\\n    padding: 20px; /* Adjusted for smaller screens */\\n    border-radius: 15px;\\n    width: 90%; /* Ensure responsiveness */\\n    max-width: 620px; /* Prevent blowing up */\\n    text-align: center;\\n    color: white;\\n    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);\\n    font-family: \\'Poppins\\', Arial, sans-serif;\\n    overflow-y: auto; /* Allow scrolling for content overflow */\\n}\\n\\n/* Header */\\n.popup-content h1 {\\n    font-size: 1.8rem; /* Adjusted for responsiveness */\\n    margin-bottom: 0.5rem;\\n    line-height: 1.2;\\n}\\n\\n/* Subheader */\\n.popup-content p {\\n    font-size: 1rem;\\n    margin-bottom: 1rem;\\n    line-height: 1.5;\\n}\\n\\n/* Feature Icons and Text */\\n.popup-content .features {\\n    display: flex;\\n    flex-direction: column;\\n    gap: 10px;\\n    text-align: left;\\n    font-size: 1rem;\\n    margin-top: 1rem;\\n}\\n\\n.popup-content .features span {\\n    display: flex;\\n    align-items: center;\\n    gap: 10px;\\n    word-wrap: break-word;\\n}\\n\\n/* CTA Button */\\n#closePopup {\\n    margin-top: 20px;\\n    padding: 12px 20px;\\n    background: linear-gradient(90deg, #007bff, #0056b3);\\n    color: white;\\n    border: none;\\n    border-radius: 8px;\\n    cursor: pointer;\\n    font-size: 1rem;\\n    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);\\n    transition: transform 0.2s ease, background 0.2s ease;\\n}\\n\\n#closePopup:hover {\\n    background: linear-gradient(90deg, #0056b3, #003c7e);\\n    transform: scale(1.05);\\n}\\n\\n/* Mobile and Tablet Responsiveness */\\n@media (max-width: 768px) {\\n    .popup-content {\\n        padding: 15px; /* Smaller padding for \\n        smaller screens */\\n        padding-top:20px;\\n        padding-bottom:20px;\\n        width: 95%;\\n        max-width: 90%; /* Limit the max width */\\n    }\\n\\n    .popup-content h1 {\\n        font-size: 1.5rem; /* Smaller font size for headlines */\\n    }\\n\\n    .popup-content p {\\n        font-size: 0.9rem; /* Reduce text size for readability */\\n    }\\n\\n    .popup-content .features {\\n        font-size: 0.9rem; /* Adjust features text size */\\n    }\\n\\n    #closePopup {\\n        padding: 10px 15px;\\n        font-size: 0.9rem; /* Adjust button size */\\n    }\\n}\\n\\n/* Extra Small Devices (Mobile Portrait) */\\n@media (max-width: 480px) {\\n    .popup-content {\\n        padding: 10px; /* Reduce padding further for very small devices */\\n        padding-top:20px;\\n        padding-bottom:20px;\\n    }\\n\\n    .popup-content h1 {\\n        font-size: 1.2rem;\\n    }\\n\\n    .popup-content p {\\n        font-size: 0.8rem;\\n    }\\n\\n    #closePopup {\\n        font-size: 0.8rem;\\n        padding: 8px 12px; /* Smaller button for better fit */\\n    }\\n}\\n\\n\\n</style>',description:\"From advanced POS systems and reliable IT services to custom software development and creative design, apps.lu delivers tailored solutions to streamline your business.\",favicon:\"https://framerusercontent.com/assets/Ewx65AwmXGXKjcKAZmcBMNujR0.svg\",robots:\"max-image-preview:large\",socialImage:\"https://framerusercontent.com/assets/M92RlaFfHamEhMuznfXCKoNGs.png\",title:\"All Your Business Needs in One Place | apps.lu\"};}export const metadataVersion=1;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"metadataVersion\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "AACe,SAARA,EAA0BC,EAAOC,EAAa,CAAC,MAAM,CAAC,kBAAkB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,GAA4nD,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,UAAk1H,YAAY,0KAA0K,QAAQ,sEAAsE,OAAO,0BAA0B,YAAY,qEAAqE,MAAM,gDAAgD,CAAE",
  "names": ["metadata", "params", "activeLocale"]
}
