22 lines
		
	
	
		
			443 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			443 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <div class="w-full flex flex-col items-center">
 | |
|     <header class="py-4">
 | |
|       <img class="logo p-1 w-80" src="/logo.svg" alt="">
 | |
|       <h1 class="dark:text-white text-center">
 | |
|         compilations
 | |
|         indépendantes
 | |
|       </h1>
 | |
|     </header>
 | |
|     <main>
 | |
|       <OrganismCompilationList />
 | |
|       <MoleculePlayer />
 | |
|     </main>
 | |
|   </div>
 | |
| </template>
 | |
| 
 | |
| <style>
 | |
| .logo {
 | |
|   filter: drop-shadow(2px 2px 0 rgb(0 0 0 / 0.8));
 | |
| }
 | |
| </style>
 |