<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Alpha Gen Africa</title>
  <script>
    // Redirect to index.html and preserve the path
    sessionStorage.redirect = location.pathname;
    window.location.href = '/' + 
      location.pathname.slice(1) + 
      location.search + 
      location.hash;
  </script>
</head>
<body>
  <p>Redirecting...</p>
</body>
</html>

