| <svelte:head> | |
| <title>Home</title> | |
| <meta name="description" content="Svelte demo app" /> | |
| </svelte:head> | |
| <section> | |
| <h1>boo</h1> | |
| </section> | |
| <style> | |
| section { | |
| display: flex; | |
| flex-direction: column; | |
| justify-content: center; | |
| align-items: center; | |
| flex: 0.6; | |
| } | |
| h1 { | |
| width: 100%; | |
| } | |
| </style> | |