Spaces:
Sleeping
Sleeping
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>StructuralDesignEnv Demo</title> | |
| <meta http-equiv="refresh" content="0; url=/demo" /> | |
| <style> | |
| body { | |
| margin: 0; | |
| min-height: 100vh; | |
| display: grid; | |
| place-items: center; | |
| padding: 24px; | |
| font-family: "Avenir Next", "Trebuchet MS", sans-serif; | |
| color: #f4efe6; | |
| background: linear-gradient(180deg, #08131d 0%, #091925 100%); | |
| } | |
| main { | |
| max-width: 560px; | |
| padding: 28px; | |
| border-radius: 20px; | |
| border: 1px solid rgba(255, 255, 255, 0.12); | |
| background: rgba(13, 29, 41, 0.92); | |
| box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28); | |
| } | |
| a { | |
| color: #68c3b3; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <main> | |
| <h1>StructuralDesignEnv demo moved to <a href="/demo">/demo</a>.</h1> | |
| <p>The interactive experience is now served by the FastAPI app so it can call the live environment endpoints directly.</p> | |
| </main> | |
| </body> | |
| </html> | |