<!doctype html>
<html>
  <head>
    <meta charset="utf-8" />
    <script>
      const lang = navigator.language || "en"
      if (lang.toLowerCase().startsWith("fr")) {
        window.location.replace("/fr-CA/")
      } else {
        window.location.replace("/en-CA/")
      }
    </script>
  </head>
  <body></body>
</html>
