CINXE.COM
Luma - Unsupported Browser
<!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <title>Luma - Unsupported Browser</title> <style> body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; line-height: 1.6; color: #131517; background-color: #f4f5f6; } img { width: 100px; } h1 { margin-top: 40px; line-height: 1.2; } .content-wrapper { max-width: 600px; text-align: center; margin: auto; margin-top: 40px; padding: 10px; } .links { border-top: 1px solid #c2cfcf; border-bottom: 1px solid #c2cfcf; padding-top: 20px; margin-top: 20px; margin-bottom: 20px; } .links a { display: block; color: #de3163; margin-bottom: 20px; font-size: 20px; text-decoration: none; } footer { margin-top: 40px; font-size: 14px; color: #737577; } footer a { color: #de3163; text-decoration: none; } </style> <script> var ua = window.navigator.userAgent; // Check if browser is IE var unsupported = /MSIE|Trident/.test(ua); // Check is browser is Safari 10 or lower (all browsers on iOS are Safari) if (!unsupported && window.navigator.vendor == "Apple Computer, Inc.") { unsupported = !/Version\/(1[1-9]|[2-9][0-9])/.test(ua); } if (!unsupported) { window.location = "https://lu.ma"; } </script> </head> <body> <div class="content-wrapper"> <img src="/logo.png" /> <h1>Your browser is not supported.</h1> <p> Thank you for visiting Luma! Unfortunately, our site doesn't support your browser. </p> <p> Please use a modern browser such as Chrome, Firefox or Edge. If you don't have another browser, you can download one below: </p> <div class="links"> <a href="https://www.google.com/chrome/">Download Chrome</a> <a href="https://www.mozilla.org/en-US/firefox/new/" >Download Firefox</a > <a href="https://www.microsoft.com/en-us/edge">Download Edge</a> </div> <p>Thank you and sorry for the inconvenience!</p> <p>❤ from Luma Team</p> <footer> You seem to be using Internet Explorer or Safari 9 or 10. If you believe you are seeing this page in error, please contact us at <a href="mailto:support@lu.ma">support@lu.ma</a>. </footer> </div> </body> </html>