16 lines
237 B
Vue
16 lines
237 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>
|