Files
Tiber365/src/pages/contact.astro

23 lines
758 B
Plaintext

---
// Client-side redirect to English contact page
---
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Redirecting...</title>
<meta http-equiv="refresh" content="0;url=/en/contact" />
<link rel="canonical" href="/en/contact" />
</head>
<body>
<div style="display: flex; justify-content: center; align-items: center; height: 100vh; font-family: system-ui, sans-serif;">
<div style="text-align: center;">
<h1>Redirecting...</h1>
<p>If you are not redirected automatically, <a href="/en/contact">click here</a>.</p>
</div>
</div>
<script>
window.location.href = '/en/contact';
</script>
</body>
</html>