15 lines
		
	
	
		
			236 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			236 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <div class="w-full flex flex-col items-center">
 | |
|     <logo />
 | |
|     <main>
 | |
|       <compilations />
 | |
|       <player />
 | |
|     </main>
 | |
|   </div>
 | |
| </template>
 | |
| <style>
 | |
| .logo {
 | |
|   filter: drop-shadow(2px 2px 0 rgb(0 0 0 / 0.8));
 | |
| }
 | |
| </style>
 |