Files
explorer-monorepo/frontend/public/index.html
defiQUG 4fac5e4856
Some checks failed
Deploy Explorer Live / deploy (push) Failing after 13s
Validate Explorer / frontend (push) Successful in 1m29s
Validate Explorer / smoke-e2e (push) Failing after 2m27s
Fix UX audit gaps: tablet nav, footer, wallet connect, legacy demotion.
Close the 1024–1279px nav dead zone, align ops/footer labels, split homepage quick links, route successful wallet connect to /wallet with inline errors, add WETH to ops sub-nav, and demote legacy SPA with noindex plus banner.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-22 22:30:35 -07:00

45 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="noindex, nofollow">
<meta http-equiv="refresh" content="0; url=/">
<link rel="canonical" href="/">
<title>DBIS Explorer</title>
<meta name="description" content="Redirecting to the DBIS Chain 138 explorer.">
<style>
body {
margin: 0;
min-height: 100vh;
display: grid;
place-items: center;
font-family: system-ui, -apple-system, Segoe UI, sans-serif;
background: #0f172a;
color: #e2e8f0;
}
main {
max-width: 32rem;
padding: 2rem;
text-align: center;
}
a {
color: #93c5fd;
}
</style>
</head>
<body>
<main>
<h1>DBIS Explorer</h1>
<p>Redirecting to the current Chain 138 explorer…</p>
<p><a href="/">Continue to explorer</a></p>
<p class="legacy-fallback"><small>Legacy SPA fallback (deprecated): <a href="/legacy/index.html">/legacy/</a></small></p>
</main>
<script>
if (window.location.pathname === '/index.html') {
window.location.replace('/');
}
</script>
</body>
</html>