index.neovan 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <@html>
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="utf-8">
  6. <title>TODO | NeoVan</title>
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. </head>
  9. <body>
  10. <h1>NeoVan TODO</h1>
  11. <p>This is a non-exhaustive list of features that are intended to be added in the future.</p>
  12. <p>*Note: Everything is currently experimental at the moment to see if there is interest in the project.</p>
  13. <ul>
  14. <li>Obvious improvement to parsing/building</li>
  15. <li>Pre-fetching for links</li>
  16. <li>URL parameters</li>
  17. <li>Re-writing in Rust/Actix for better server performance</li>
  18. <li>Add support for ".neovan" files for VSCode</li>
  19. <li>Add scoping for components</li>
  20. </ul>
  21. </body>
  22. </html>
  23. <@/html>
  24. <@style>
  25. *{margin: 0; padding: 0; box-sizing: border-box;}
  26. body{
  27. height: 100%;
  28. width: 100%;
  29. display: flex;
  30. flex-direction: column;
  31. align-items: center;
  32. background: black;
  33. color: white;
  34. margin: 25px;
  35. box-sizing: border-box;
  36. }
  37. h1{
  38. color: #00ccaa;
  39. margin-bottom: 35px;
  40. }
  41. p{
  42. margin-bottom: 15px;
  43. font-size: 22px;
  44. }
  45. li{
  46. font-size: 24px;
  47. margin: 10px 0;
  48. }
  49. <@/style>