**refactor(examples): remove index.html redirect page**

### Changes:
- **examples/index.html**:
  - Deleted the redirect HTML file that directed users to `demo.html`.

### Purpose:
Cleaned up unused redirect page as part of
This commit is contained in:
David Snelling 2025-06-23 10:57:55 -07:00
parent 310ab6ad2a
commit 93c8821d86

View file

@ -1,16 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Brainy Demo - Redirecting...</title>
<meta http-equiv="refresh" content="0;url=demo.html">
<link rel="canonical" href="demo.html">
</head>
<body>
<p>Redirecting to <a href="demo.html">Brainy Demo</a>...</p>
<script>
window.location.href = "demo.html";
</script>
</body>
</html>