**feat(examples): add redirect page for demo and update live demo links**
### Changes: - **examples/index.html**: - Introduced a new HTML file that redirects users to `demo.html` using both meta tag and JavaScript. - **README.md**: - Updated live demo link to point to the new `examples/` directory and clarified access to both the root directory and `demo.html`. ### Purpose: Improved user experience by creating a smoother navigation to the demo page and updated documentation to reflect the new entry point of the live demo. Removed redundant `CNAME` file as part of cleanup.
This commit is contained in:
parent
9ac7b4011f
commit
5a16c13ea2
3 changed files with 17 additions and 2 deletions
|
|
@ -1 +0,0 @@
|
|||
www.soulcraft.com
|
||||
16
examples/index.html
Normal file
16
examples/index.html
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<!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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue