-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHome.vue
98 lines (96 loc) · 2.49 KB
/
Home.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<template>
<div>
<v-row justify="space-around" class="mt-2">
<v-col align-self="center" cols="10" sm="6">
<div class="text-h5">
Welcome to the world's best
</div>
<div class="text-h2 font-weight-bold">
Parcel Delivery Simulator
</div>
</v-col>
<v-col align="center" cols="9" sm="4">
<v-img
alt="Menny's Parcel Logo"
contain
:src="require('../assets/logo.svg')"
transition="scale-transition"
/>
</v-col>
</v-row>
<v-divider></v-divider>
<v-row justify="space-around" class="my-5">
<v-col align="center" align-self="center" cols="12">
<div class="text-h5">
Meet our A-List team of experts
</div>
<div class="text-h3 font-weight-bold">
Menny's Parents
</div>
</v-col>
<v-col v-for="member of team" :key="member.name" align="center" cols="9" sm="4">
<v-card
class="mx-auto"
max-width="434"
tile
>
<v-row
align="end"
class="fill-height"
>
<v-col
align-self="start"
class="pb-0"
cols="12"
>
<v-avatar
class="profile"
color="grey"
size="164"
>
<v-img :src="require(`../assets/${member.img}`)"></v-img>
</v-avatar>
</v-col>
<v-col class="py-0">
<v-list-item>
<v-list-item-content>
<v-list-item-title class="text-h6">
{{ member.name }}
</v-list-item-title>
<v-list-item-subtitle>{{ member.info }}</v-list-item-subtitle>
</v-list-item-content>
</v-list-item>
</v-col>
</v-row>
</v-card>
</v-col>
</v-row>
</div>
</template>
<script>
// @ is an alias to /src
export default {
name: 'Home',
components: {
},
data: () => ({
team: [
{
name: 'Almog',
img: 'almog.png',
info: 'Chief Simulation Officer',
},
{
name: 'Daniel',
img: 'daniel.png',
info: 'Chief Assignment Officer',
},
{
name: 'Nir',
img: 'nir.png',
info: 'Chief Parcelling Officer',
},
]
})
}
</script>