Detect browser language on root and redirect to /cs/ or /en/

Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Vladimír Duša
2026-03-11 13:03:48 +01:00
parent 9272a8085c
commit 0cc447c113

View File

@@ -1,3 +1,16 @@
--- ---
return Astro.redirect('/cs/');
--- ---
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<script is:inline>
var lang = (navigator.language || navigator.languages && navigator.languages[0] || '').toLowerCase();
window.location.replace(lang.startsWith('cs') ? '/cs/' : '/en/');
</script>
<noscript>
<meta http-equiv="refresh" content="0;url=/en/" />
</noscript>
</head>
<body></body>
</html>