24 lines
479 B
Vue
24 lines
479 B
Vue
|
|
<template>
|
|
<div class="card absolute right-0 bottom-0 w-full sm:w-2/3 md:w-1/2 lg:w-2/5 xl:w-1/3">
|
|
<div class="flex flex-col">
|
|
<div class="flex flex-col">
|
|
<h1 class="text-4xl py-1">Damillora</h1>
|
|
<h2 class="text-xl py-1">an idol fan with a strange music to it</h2>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
components: {
|
|
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|