Files
dusa.cz/src/pages/index.astro
Vladimír Duša 0cc447c113 Detect browser language on root and redirect to /cs/ or /en/
Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
2026-03-11 13:03:48 +01:00

17 lines
408 B
Plaintext

---
---
<!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>