21 lines
		
	
	
		
			528 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			528 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!doctype html>
 | |
| <html lang="en">
 | |
| <head>
 | |
|   <meta charset="UTF-8" />
 | |
|   <link rel="icon" type="image/png" href="/favicon.png" />
 | |
|   <link rel="apple-touch-icon" type="image/png" href="/apple-touch-icon.png" sizes="1024x1024">
 | |
|   <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
 | |
|   <title>Solian</title>
 | |
| 
 | |
|   <style>
 | |
|       html, body {
 | |
|           scroll-behavior: smooth;
 | |
|       }
 | |
|   </style>
 | |
| </head>
 | |
| <body>
 | |
| <div id="app"></div>
 | |
| <script type="module" src="/src/main.ts"></script>
 | |
| </body>
 | |
| </html>
 |