first commit

This commit is contained in:
Inshal
2024-05-29 22:34:28 +05:00
commit e63fc41a20
1470 changed files with 174828 additions and 0 deletions

View File

@@ -0,0 +1,49 @@
<script setup>
import trophy from '@images/misc/trophy.png'
</script>
<template>
<VCard class="position-relative">
<VCardText>
<div class="mb-3">
<h5 class="text-h5">
Congratulations John! <span class="text-high-emphasis">🎉</span>
</h5>
<div class="text-body-1">
Best seller of the month
</div>
</div>
<h4 class="text-h4 text-primary">
$42.8k
</h4>
<div class="text-body-1 mb-3">
78% of target <span class="text-high-emphasis">🚀</span>
</div>
<VBtn size="small">
View Sales
</VBtn>
</VCardText>
<!-- Trophy -->
<VImg
:src="trophy"
class="trophy"
/>
</VCard>
</template>
<style lang="scss">
.v-card .triangle-bg {
position: absolute;
inline-size: 10.375rem;
inset-block-end: 0;
inset-inline-end: 0;
}
.v-card .trophy {
position: absolute;
inline-size: 5.188rem;
inset-block-end: 1rem;
inset-inline-end: 1rem;
}
</style>

View File

@@ -0,0 +1,53 @@
<script setup>
import illustrationJohn2 from '@images/cards/illustration-john-2.png'
</script>
<template>
<VCard class="overflow-visible">
<VRow no-gutters>
<VCol
cols="12"
sm="6"
order="2"
order-sm="1"
>
<VCardItem>
<VCardTitle>
<h4 class="text-h4 text-wrap">
Congratulations <strong>John!</strong> <span class="text-high-emphasis">🎉</span>
</h4>
</VCardTitle>
</VCardItem>
<VCardText class="pt-4">
<div class="mb-0 text-body-1 me-2">
You have done 72% <span class="text-high-emphasis">😎</span> more sales today.
Check your new raising badge in your profile.
</div>
</VCardText>
</VCol>
<VCol
cols="12"
sm="6"
order="1"
order-sm="2"
class="text-center"
>
<img
:src="illustrationJohn2"
:height="$vuetify.display.xs ? '165' : '200'"
:class="$vuetify.display.xs ? 'position-relative' : 'position-absolute'"
class="john-illustration flip-in-rtl mt-6 mt-sm-0"
>
</VCol>
</VRow>
</VCard>
</template>
<style lang="scss" scoped>
.john-illustration {
inset-block-end: -0.0625rem;
inset-inline-end: 0;
}
</style>

View File

@@ -0,0 +1,49 @@
<script setup>
import poseM9 from '@images/cards/pose-m-9.png'
</script>
<template>
<VCard class="position-relative">
<VCardText>
<div class="mb-3">
<h5 class="text-h5">
Upgrade Account <span class="text-high-emphasis">😀</span>
</h5>
<div class="text-body-1">
Add 15 team members
</div>
</div>
<h4 class="text-h4 text-primary">
$199
</h4>
<div class="text-body-1 mb-3">
40% OFF <span class="text-high-emphasis">😍</span>
</div>
<VBtn size="small">
Upgrade Plan
</VBtn>
</VCardText>
<!-- Trophy -->
<VImg
:src="poseM9"
class="illustration flip-in-rtl"
/>
</VCard>
</template>
<style lang="scss">
.v-card .triangle-bg {
position: absolute;
inline-size: 10.375rem;
inset-block-end: 0;
inset-inline-end: 0;
}
.v-card .illustration {
position: absolute;
inline-size: 3rem;
inset-block-end: 1rem;
inset-inline-end: 3rem;
}
</style>

View File

@@ -0,0 +1,56 @@
<script setup>
import illustrationJohn from '@images/cards/illustration-john.png'
</script>
<template>
<VCard class="overflow-visible">
<VRow no-gutters>
<VCol
cols="12"
sm="6"
>
<VCardItem>
<VCardTitle>
<h4 class="text-h4 text-wrap">
Welcome back <strong>John!</strong> <span class="text-high-emphasis">🥳</span>
</h4>
</VCardTitle>
</VCardItem>
<VCardText class="pt-4">
<div class="text-body-1 me-2">
You have 4 tasks to finish today,
You already completed 68% <span class="text-high-emphasis">😍</span> tasks. Good job!
</div>
</VCardText>
</VCol>
<VCol
cols="12"
sm="6"
class="text-center"
>
<img
:src="illustrationJohn"
class="john-illustration"
:height="$vuetify.display.xs ? '165' : '200'"
:class="$vuetify.display.xs ? 'position-relative' : 'position-absolute'"
>
</VCol>
</VRow>
</VCard>
</template>
<style lang="scss" scoped>
.john-illustration {
inset-block-end: 0;
inset-inline-end: 0;
}
@media (max-width: 600px) {
.john-illustration {
inset-block-end: -0.375rem;
inset-inline-end: 0;
}
}
</style>