Initial commit

This commit is contained in:
2025-08-04 16:33:07 +03:30
commit f798e8e35c
9595 changed files with 1208683 additions and 0 deletions

View File

@@ -0,0 +1,148 @@
<script setup>
import avatar1 from '@images/avatars/avatar-1.png'
import avatar2 from '@images/avatars/avatar-2.png'
import avatar3 from '@images/avatars/avatar-3.png'
import pdf from '@images/icons/project-icons/pdf.png'
</script>
<template>
<VCard title="Basic Timeline">
<VCardText>
<VTimeline
side="end"
align="start"
line-inset="8"
truncate-line="start"
density="compact"
>
<!-- SECTION Timeline Item: Flight -->
<VTimelineItem
dot-color="primary"
size="x-small"
>
<!-- 👉 Header -->
<div class="d-flex justify-space-between align-center gap-2 flex-wrap mb-2">
<span class="app-timeline-title">
12 Invoices have been paid
</span>
<span class="app-timeline-meta">12 min ago</span>
</div>
<!-- 👉 Content -->
<div class="app-timeline-text mt-1">
Invoices have been paid to the company
</div>
<div class="d-inline-flex align-center timeline-chip mt-2">
<img
:src="pdf"
height="20"
class="me-2"
alt="img"
>
<span class="app-timeline-text font-weight-medium">
invoice.pdf
</span>
</div>
</VTimelineItem>
<!-- !SECTION -->
<!-- SECTION Timeline Item: Interview Schedule -->
<VTimelineItem
size="x-small"
dot-color="success"
>
<!-- 👉 Header -->
<div class="d-flex justify-space-between align-center flex-wrap mb-2">
<div class="app-timeline-title">
Client Meeting
</div>
<span class="app-timeline-meta">45 min ago</span>
</div>
<div class="app-timeline-text mt-1">
Project meeting with john @10:15am
</div>
<!-- 👉 Person -->
<div class="d-flex justify-space-between align-center flex-wrap">
<!-- 👉 Avatar & Personal Info -->
<div class="d-flex align-center mt-2">
<VAvatar
size="32"
class="me-2"
:image="avatar1"
/>
<div class="d-flex flex-column">
<p class="text-sm font-weight-medium text-medium-emphasis mb-0">
Lester McCarthy (Client)
</p>
<span class="text-sm">CEO of Pixinvent</span>
</div>
</div>
</div>
</VTimelineItem>
<!-- !SECTION -->
<!-- SECTION Design Review -->
<VTimelineItem
size="x-small"
dot-color="info"
>
<!-- 👉 Header -->
<div class="d-flex justify-space-between align-center flex-wrap mb-2">
<span class="app-timeline-title">
Create a new project for client
</span>
<span class="app-timeline-meta">2 Day Ago</span>
</div>
<!-- 👉 Content -->
<p class="app-timeline-text mt-1 mb-2">
6 team members in a project
</p>
<div class="v-avatar-group demo-avatar-group">
<VAvatar :size="40">
<VImg :src="avatar1" />
<VTooltip
activator="parent"
location="top"
>
John Doe
</VTooltip>
</VAvatar>
<VAvatar :size="40">
<VImg :src="avatar2" />
<VTooltip
activator="parent"
location="top"
>
Jennie Obrien
</VTooltip>
</VAvatar>
<VAvatar :size="40">
<VImg :src="avatar3" />
<VTooltip
activator="parent"
location="top"
>
Peter Harper
</VTooltip>
</VAvatar>
<VAvatar
:size="40"
:color="$vuetify.theme.current.dark ? '#373b50' : '#eeedf0'"
>
+3
</VAvatar>
</div>
</VTimelineItem>
<!-- !SECTION -->
</VTimeline>
</VCardText>
</VCard>
</template>

View File

@@ -0,0 +1,170 @@
<script setup>
import avatar1 from '@images/avatars/avatar-1.png'
import avatar2 from '@images/avatars/avatar-2.png'
import avatar3 from '@images/avatars/avatar-3.png'
import pdf from '@images/icons/project-icons/pdf.png'
</script>
<template>
<VCard title="Outlined Timeline">
<VCardText>
<VTimeline
side="end"
align="start"
line-inset="8"
truncate-line="start"
density="compact"
class="v-timeline--variant-outlined"
>
<!-- SECTION Timeline Item: Flight -->
<VTimelineItem
dot-color="rgb(var(--v-theme-surface))"
size="x-small"
>
<template #icon>
<VIcon
icon="tabler-circle"
color="primary"
size="16"
/>
</template>
<!-- 👉 Header -->
<div class="d-flex justify-space-between align-center gap-2 flex-wrap mb-2">
<span class="app-timeline-title">
12 Invoices have been paid
</span>
<span class="app-timeline-meta">12 min ago</span>
</div>
<!-- 👉 Content -->
<div class="app-timeline-text mt-1">
Invoices have been paid to the company
</div>
<div class="d-inline-flex align-center timeline-chip mt-2">
<img
:src="pdf"
height="20"
class="me-2"
alt="img"
>
<span class="app-timeline-text font-weight-medium">
invoice.pdf
</span>
</div>
</VTimelineItem>
<!-- !SECTION -->
<!-- SECTION Timeline Item: Interview Schedule -->
<VTimelineItem
size="x-small"
dot-color="rgb(var(--v-theme-surface))"
>
<template #icon>
<VIcon
icon="tabler-circle"
color="success"
size="16"
/>
</template>
<!-- 👉 Header -->
<div class="d-flex justify-space-between align-center flex-wrap mb-2">
<div class="app-timeline-title">
Client Meeting
</div>
<span class="app-timeline-meta">45 min ago</span>
</div>
<div class="app-timeline-text mt-1">
Project meeting with john @10:15am
</div>
<!-- 👉 Person -->
<div class="d-flex justify-space-between align-center flex-wrap">
<!-- 👉 Avatar & Personal Info -->
<div class="d-flex align-center mt-2">
<VAvatar
size="32"
class="me-2"
:image="avatar1"
/>
<div class="d-flex flex-column">
<p class="text-sm font-weight-medium text-medium-emphasis mb-0">
Lester McCarthy (Client)
</p>
<span class="text-sm">CEO of Pixinvent</span>
</div>
</div>
</div>
</VTimelineItem>
<!-- !SECTION -->
<!-- SECTION Design Review -->
<VTimelineItem
size="x-small"
dot-color="rgb(var(--v-theme-surface))"
>
<template #icon>
<VIcon
icon="tabler-circle"
color="info"
size="16"
/>
</template>
<!-- 👉 Header -->
<div class="d-flex justify-space-between align-center flex-wrap mb-2">
<span class="app-timeline-title">
Create a new project for client
</span>
<span class="app-timeline-meta">2 Day Ago</span>
</div>
<!-- 👉 Content -->
<p class="app-timeline-text mt-1 mb-2">
6 team members in a project
</p>
<div class="v-avatar-group demo-avatar-group">
<VAvatar :size="40">
<VImg :src="avatar1" />
<VTooltip
activator="parent"
location="top"
>
John Doe
</VTooltip>
</VAvatar>
<VAvatar :size="40">
<VImg :src="avatar2" />
<VTooltip
activator="parent"
location="top"
>
Jennie Obrien
</VTooltip>
</VAvatar>
<VAvatar :size="40">
<VImg :src="avatar3" />
<VTooltip
activator="parent"
location="top"
>
Peter Harper
</VTooltip>
</VAvatar>
<VAvatar
:size="40"
:color="$vuetify.theme.current.dark ? '#373b50' : '#eeedf0'"
>
+3
</VAvatar>
</div>
</VTimelineItem>
<!-- !SECTION -->
</VTimeline>
</VCardText>
</VCard>
</template>

View File

@@ -0,0 +1,395 @@
<script setup>
import avatar8 from '@images/avatars/avatar-8.png'
import xls from '@images/icons/file/xls.png'
import pdf from '@images/icons/project-icons/pdf.png'
import aviato from '@images/logos/aviato.png'
import bitbank from '@images/logos/bitbank.png'
import zipcar from '@images/logos/zipcar.png'
import TimelineRectangle1 from '@images/pages/TimelineRectangle1.png'
import TimelineRectangle2 from '@images/pages/TimelineRectangle2.png'
import TimelineRectangle3 from '@images/pages/TimelineRectangle3.png'
import TimelineRectangle4 from '@images/pages/TimelineRectangle4.png'
const albumImages = [
TimelineRectangle1,
TimelineRectangle2,
TimelineRectangle3,
TimelineRectangle4,
]
const earnings = [
{
avatar: zipcar,
title: 'Zipcar',
subtitle: 'Vuejs, React & HTML',
amount: '$24,895.65',
progress: 'primary',
},
{
avatar: bitbank,
title: 'Bitbank',
subtitle: 'Sketch, Figma & XD',
amount: '$8,6500.20',
progress: 'info',
},
{
avatar: aviato,
title: 'Aviato',
subtitle: 'HTML & Anguler',
amount: '$1,2450.80',
progress: 'secondary',
},
]
</script>
<template>
<div class="my-6">
<div>
<h5 class="text-h5">
Timeline with icons
</h5>
</div>
<VTimeline
align="start"
line-inset="19"
truncate-line="start"
justify="center"
:density="$vuetify.display.smAndDown ? 'compact' : 'default'"
class="mt-4"
>
<!-- SECTION Timeline Item: Document -->
<VTimelineItem
fill-dot
size="small"
>
<template #opposite>
<span class="app-timeline-meta">
2 month's ago
</span>
</template>
<template #icon>
<div class="v-timeline-avatar-wrapper rounded-circle">
<VAvatar
size="32"
color="error"
variant="tonal"
>
<VIcon
icon="tabler-file"
size="20"
/>
</VAvatar>
</div>
</template>
<!-- 👉 Header -->
<VCard class="mb-10 mt-n4">
<VCardItem class="pb-4">
<VCardTitle>You've uploaded doc pdf to the Pixinvent project</VCardTitle>
</VCardItem>
<VCardText>
<!-- 👉 Content -->
<p class="app-timeline-text mb-3">
he process of recording the key project details and producing the documents that are required to implement it successfully. Simply put, it's an umbrella term which includes all the documents created over the course of the project.
</p>
<div class="d-inline-flex align-items-center timeline-chip">
<img
:src="pdf"
height="20"
class="me-2"
alt="img"
>
<span class="app-timeline-text font-weight-medium">
documentation.pdf
</span>
</div>
</VCardText>
</VCard>
</VTimelineItem>
<!-- !SECTION -->
<!-- SECTION Timeline Item: Image Album -->
<VTimelineItem
fill-dot
size="small"
>
<template #opposite>
<span class="app-timeline-meta">
24 day's ago
</span>
</template>
<template #icon>
<div class="v-timeline-avatar-wrapper rounded-circle">
<VAvatar
size="32"
color="success"
variant="tonal"
>
<VIcon
size="20"
icon="tabler-photo"
/>
</VAvatar>
</div>
</template>
<VCard class="mb-10 mt-n4">
<VCardItem class="pb-4">
<VCardTitle>Heather added 4 images to the Team album</VCardTitle>
</VCardItem>
<VCardText>
<p class="mb-3">
In the Select Image for Project dialog box, choose one of the following: Under the Upload New Image section
</p>
<div class="d-flex gap-4 flex-wrap">
<template
v-for="(img, i) in albumImages"
:key="i"
>
<VImg :src="img" />
</template>
</div>
</VCardText>
</VCard>
</VTimelineItem>
<!-- !SECTION -->
<!-- SECTION Timeline Item: Review -->
<VTimelineItem
fill-dot
size="small"
>
<template #opposite>
<span class="app-timeline-meta">
6 day's ago
</span>
</template>
<template #icon>
<div class="v-timeline-avatar-wrapper rounded-circle">
<VAvatar
size="32"
color="warning"
variant="tonal"
>
<VIcon
size="20"
icon="tabler-star"
/>
</VAvatar>
</div>
</template>
<VCard class="mb-10 mt-n4">
<VCardItem class="pb-4">
<VCardTitle>
Loretta write a review on Pixinvent
</VCardTitle>
</VCardItem>
<VCardText>
<div>
<div class="d-flex align-center mb-3">
<VAvatar
size="38"
class="me-4"
:image="avatar8"
/>
<div>
<h6 class="text-h6">
Loretta Moore
</h6>
<div class="text-body-2">
CTO of Airbnb
</div>
</div>
</div>
<div class="d-flex align-center justify-space-between flex-wrap mb-3">
<VRating
:model-value="5"
class="timeline-rating"
/>
<VChip
color="success"
size="small"
label
>
<template #prepend>
<VAvatar
start
:image="avatar8"
size="16"
/>
</template>
VERIFIED BUYER
</VChip>
</div>
<div class="text-body-1">
I wish I could select more than one main reason for rating this. I love how they constantly work on to make the template better. I am so thankful for this. Also, in the past, they had responded well to my tickets. Thank you for this great theme, for such an amazing support, for the better updates. I wish I could rate this for so many times. I highly recommend this template!
</div>
</div>
</VCardText>
</VCard>
</VTimelineItem>
<!-- !SECTION -->
<!-- SECTION Timeline Item: Earning Report -->
<VTimelineItem
fill-dot
size="small"
>
<template #opposite>
<span class="app-timeline-meta">
2 day's ago
</span>
</template>
<template #icon>
<div class="v-timeline-avatar-wrapper rounded-circle">
<VAvatar
size="32"
color="info"
variant="tonal"
>
<VIcon
size="20"
icon="tabler-chart-pie"
/>
</VAvatar>
</div>
</template>
<VCard class="mb-10 mt-n4">
<VCardItem class="pb-4">
<VCardTitle>Julia stiles shared an earnings report</VCardTitle>
</VCardItem>
<VCardText>
<div class="mb-3">
<div class="d-flex align-center">
<h4 class="text-h4">
$24,895
</h4>
<span class="text-success d-flex">
<VIcon
size="24"
icon="tabler-caret-up-filled"
/>
<div class="align-self-center text-body-2 font-weight-medium text-success">10%</div>
</span>
</div>
<div class="text-body-2">
Compared to $84,325 last year
</div>
</div>
<VList class="card-list">
<VListItem
v-for="earning in earnings"
:key="earning.title"
>
<template #prepend>
<VAvatar
rounded
:image="earning.avatar"
/>
</template>
<VListItemTitle>
<div class="text-body-1 font-weight-medium text-high-emphasis">
{{ earning.title }}
</div>
</VListItemTitle>
<VListItemSubtitle>
<div class="text-body-2">
{{ earning.subtitle }}
</div>
</VListItemSubtitle>
<template #append>
<div>
<h6 class="text-h6 mb-2">
{{ earning.amount }}
</h6>
<VProgressLinear
:color="earning.progress"
model-value="80"
height="4"
/>
</div>
</template>
</VListItem>
</VList>
</VCardText>
</VCard>
</VTimelineItem>
<!-- !SECTION -->
<!-- SECTION Timeline Item: Progress Report -->
<VTimelineItem
fill-dot
size="small"
>
<template #icon>
<div class="v-timeline-avatar-wrapper rounded-circle">
<VAvatar
size="32"
color="primary"
variant="tonal"
>
<VIcon
size="18"
icon="tabler-folder"
/>
</VAvatar>
</div>
</template>
<template #opposite>
<span class="app-timeline-meta">
2 day's ago
</span>
</template>
<VCard class="mb-10 mt-n4">
<VCardItem class="pb-4">
<VCardTitle>josh johnson shared Nuxt js project progress report</VCardTitle>
</VCardItem>
<VCardText>
<p class="mb-3">
The structure and process are defined in the project organization considering the attainment of the corporate objectives and therefore also project objectives. The components of the project process are
</p>
<div class="d-inline-flex align-items-center timeline-chip mb-3">
<img
:src="xls"
height="20"
class="me-2"
alt="img"
>
<span class="app-timeline-text font-weight-medium">
progress-report.xls
</span>
</div>
<div class="d-flex gap-2 align-center">
<div class="flex-grow-1">
<VProgressLinear
:model-value="34"
color="primary"
/>
</div>
<div class="text-body-2 font-weight-medium">
34%
</div>
</div>
</VCardText>
</VCard>
</VTimelineItem>
<!-- !SECTION -->
</VTimeline>
</div>
</template>
<style lang="scss">
.v-timeline-avatar-wrapper {
background-color: rgb(var(--v-theme-surface));
}
.timeline-rating {
.v-rating__item {
.v-btn--icon {
--v-btn-height: 28px;
.v-btn__content {
.v-icon {
block-size: 28px !important;
font-size: 28px !important;
inline-size: 28px !important;
}
}
}
}
}
</style>