fluffychat/index.html
Christian Kußowski 812e85e3a5
chore: Update page
2026-03-12 17:45:50 +01:00

20 lines
No EOL
695 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Redirecting…</title>
<meta http-equiv="refresh" content="0; url=/en/">
<script>
const userLang = navigator.language ?. substring(0, 2) || "en";
const supported = ["be","de","en","et","fi","fy","gl","lv","nb_NO","nl","ta","uz"]; // z. B. ["en","de"] Fallback auf Englisch, falls Sprache nicht unterstützt
const targetLang = supported.includes(userLang)
? userLang
: "en";
window.location.replace(`/${targetLang}/`);
</script>
</head>
<body>
<p>Redirecting…</p>
</body>
</html>