chore: add cardlink profile short intro vue component

This commit is contained in:
Anda Toshiki 2023-05-24 13:51:14 +08:00
parent 2698755e32
commit 9f56fd21bd

View File

@ -0,0 +1,28 @@
<template>
<div class="shareCard">
<h1 class="title">
<span>ようこそ👋安田俊樹です!</span>
</h1>
<p class="description">💖 世界一番可愛いの魔法少女安田俊樹!</p>
</div>
</template>
<script lang="ts" setup></script>
<style scoped>
.shareCard {
display: flex;
flex-direction: column;
align-items: center;
padding: 0 15px;
text-align: center;
}
.title {
display: flex;
align-items: center;
font-size: 2.2em;
font-weight: bold;
}
.description {
margin: 1em 0;
}
</style>