| 12345678910111213141516171819202122232425 |
- <@html>
- <div class="aboveTheFold">
- <@ ./components/rotating_logo.neovan @>
- <h2>An anti-framework for building the front-end with plain HTML/CSS/JavaScript</h2>
- </div>
- <@/html>
- <@style>
- .aboveTheFold{
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-around;
- height: 100vh;
- width: 100%;
- position: relative;
- overflow: hidden;
- }
- h2{
- text-align: center;
- margin: 15px;
- }
- <@/style>
|