Adds AccountVerified
This commit is contained in:
5
src/components/icons/IconAccountVerified.vue
Normal file
5
src/components/icons/IconAccountVerified.vue
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
<template>
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
||||||
|
<path fill="currentColor" d="m23 12l-2.44-2.78l.34-3.68l-3.61-.82l-1.89-3.18L12 3L8.6 1.54L6.71 4.72l-3.61.81l.34 3.68L1 12l2.44 2.78l-.34 3.69l3.61.82l1.89 3.18L12 21l3.4 1.46l1.89-3.18l3.61-.82l-.34-3.68zm-13 5l-4-4l1.41-1.41L10 14.17l6.59-6.59L18 9z" />
|
||||||
|
</svg>
|
||||||
|
</template>
|
||||||
@@ -3,6 +3,7 @@ import { useClient } from '@/plugins/api.js';
|
|||||||
import { useBrandingStore } from '@/stores/brandingStore.js';
|
import { useBrandingStore } from '@/stores/brandingStore.js';
|
||||||
import DonationButtonBanner from '@/views/creators/DonationButtonBanner.vue';
|
import DonationButtonBanner from '@/views/creators/DonationButtonBanner.vue';
|
||||||
import { onBeforeUnmount, onMounted, ref } from 'vue';
|
import { onBeforeUnmount, onMounted, ref } from 'vue';
|
||||||
|
import IconAccountVerified from "@/components/icons/IconAccountVerified.vue";
|
||||||
|
|
||||||
const brandingStore = useBrandingStore();
|
const brandingStore = useBrandingStore();
|
||||||
const isMobile = ref(false);
|
const isMobile = ref(false);
|
||||||
@@ -137,15 +138,21 @@ onBeforeUnmount(() => {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
class="ml-64 w-25 min-w-60 flex flex-col"
|
class="ml-64 w-25 min-w-60 flex flex-row"
|
||||||
:style="{ color: brandingStore.colors.onPrimary }"
|
:style="{ color: brandingStore.colors.onPrimary }"
|
||||||
>
|
>
|
||||||
<p class="capitalize text-3xl mt-4">
|
<div v-show="brandingStore.value.verified" class="text-blue m-4 align-content-center">
|
||||||
|
<icon-account-verified></icon-account-verified>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="flex flex-col">
|
||||||
|
<span class="capitalize text-3xl">
|
||||||
{{ brandingStore.value.name }}
|
{{ brandingStore.value.name }}
|
||||||
</p>
|
</span>
|
||||||
<p class="capitalize text-lg -mb-14">
|
<span class="capitalize text-lg">
|
||||||
{{ brandingStore.value.title }}
|
{{ brandingStore.value.title }}
|
||||||
</p>
|
</span>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user