diff --git a/src/components/Cards/EmblemCardBox.vue b/src/components/Cards/EmblemCardBox.vue new file mode 100644 index 0000000..2d2c8b8 --- /dev/null +++ b/src/components/Cards/EmblemCardBox.vue @@ -0,0 +1,75 @@ + + + diff --git a/src/components/Cards/ProfileCard.vue b/src/components/Cards/ProfileCard.vue index bead81e..2c18f93 100644 --- a/src/components/Cards/ProfileCard.vue +++ b/src/components/Cards/ProfileCard.vue @@ -9,6 +9,7 @@ import { dashCode } from "@/constants/userData"; import { getGameInfo } from "@/constants"; import BaseButton from "@/components/BaseButton.vue"; import UserEmblem from "@/components/UserEmblem.vue"; +import UserQpro from "@/components/UserQpro.vue"; import { getGitadoraColor, getJubilityColor } from "@/constants/skillColor.js"; const props = defineProps({ @@ -52,6 +53,12 @@ const thisGame = getGameInfo(props.game); :profile="profile" class="place-self-center pb-6 md:pb-0" /> +

{{ profile.username }} diff --git a/src/components/Cards/QproCardBox.vue b/src/components/Cards/QproCardBox.vue new file mode 100644 index 0000000..53431d1 --- /dev/null +++ b/src/components/Cards/QproCardBox.vue @@ -0,0 +1,74 @@ + + + diff --git a/src/components/UserEmblem.vue b/src/components/UserEmblem.vue index 21b13f0..933ba73 100644 --- a/src/components/UserEmblem.vue +++ b/src/components/UserEmblem.vue @@ -10,6 +10,10 @@ const props = defineProps({ type: Number, default: 14, }, + size: { + type: Number, + default: 128, + }, }); const userProfile = ref(props.profile); @@ -62,13 +66,17 @@ function formatEmblem(emblem) { + +