| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <@html>
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>TODO | NeoVan</title>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- </head>
- <body>
- <@ ../components/menu.neovan @>
- <h1>NeoVan TODO</h1>
- <p>This is a non-exhaustive list of features that are intended to be added in the future.</p>
- <p>*Note: Everything is currently experimental at the moment to see if there is interest in the project.</p>
- <ul>
- <li>Obvious improvement to parsing/building</li>
- <li>Pre-fetching for links</li>
- <li>URL parameters</li>
- <li>Re-writing in Rust/Actix for better server performance</li>
- <li>Add support for ".neovan" files for VSCode</li>
- <li>Add scoping for components</li>
- </ul>
- </body>
- </html>
- <@/html>
- <@style>
- *{margin: 0; padding: 0; box-sizing: border-box;}
- body{
- height: 100%;
- width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- background: black;
- color: white;
- box-sizing: border-box;
- }
- h1{
- color: #00ccaa;
- margin: 35px 0;
- }
- p{
- font-size: 22px;
- margin: 15px 15px;
- }
- li{
- font-size: 24px;
- margin: 10px 25px;
- }
- <@/style>
|