2021-07-15 18:13:35 +00:00
|
|
|
---
|
2021-07-31 05:39:15 +00:00
|
|
|
import Layout from '../layouts/MainLayout.astro';
|
2021-07-15 18:13:35 +00:00
|
|
|
---
|
|
|
|
|
2021-07-31 05:39:15 +00:00
|
|
|
<script>
|
2021-08-04 16:05:00 +00:00
|
|
|
// This is some wip redirect code based on the browser language.
|
|
|
|
// A vercel.json redirect is enforced in production, so no user should ever see this page.
|
|
|
|
// Remove the vercel.json redirect when this is ready.
|
|
|
|
const KNOWN_LANGUAGES = ['en', 'nl', 'fi','zh-CN','zh-TW'];
|
2021-07-31 05:39:15 +00:00
|
|
|
let newLang = (window.navigator.userLanguage || window.navigator.language || 'en').substr(0, 2);
|
|
|
|
if (newLang === 'en') {
|
|
|
|
window.location.pathname = '/getting-started';
|
|
|
|
} else if (KNOWN_LANGUAGES.includes(newLang)) {
|
|
|
|
window.location.pathname = '/' + newLang + '/getting-started';
|
|
|
|
} else {
|
|
|
|
window.location.pathname = '/getting-started';
|
|
|
|
}
|
|
|
|
</script>
|