"...src/components/autocomplete/PayeeAutocomplete.tsx" did not exist on "9c0df36e16d031501474bc3ee738af24479a02a1"
Newer
Older
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
<template>
<el-container class="container">
<el-header>Navbar goes here</el-header>
<el-main>
<el-row :gutter="10" justify="center">
<el-col
:span="10"
style="display: flex; justify-content: center;"
>
<el-card
onclick=""
>
<img
src="../assets/mainPage/offer.png"
class="image"
/>
<div>
<p style="font-size: 50px;">Offer</p>
<p>Match results go here</p>
</div>
</el-card>
</el-col>
<el-col
:span="10"
style="display: flex; justify-content: center;"
>
<el-card
onclick=""
>
<img
src="../assets/mainPage/wishlist.jpg"
class="image"
/>
<div>
<p style="font-size: 50px;">Wish List</p>
<p>User's wish list go here</p>
</div>
</el-card>
</el-col>
</el-row>
<el-row style="margin-top: 5%;">
<el-col
style="display: flex; justify-content: center;"
>
<el-card>
<img
src="../assets/mainPage/flight.jpeg"
class="image"
/>
<div>
<p style="font-size: 50px;">Flight Ticket</p>
<p>Find your flight!</p>
</div>
</el-card>
</el-col>
</el-row>
</el-main>
</el-container>
</template>
<script setup lang="ts">
import { ref } from 'vue'
const currentDate = ref(new Date())
</script>
<style>
.image {
width: 25vw;
display: block;
}
.container {
width: 100%;
height: 100%;
color: #fff;
background-image: linear-gradient(135deg, #b3d1ff 10%, #fd5e086b 100%);
font-size: 24px;
}
</style>