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
<template>
<div class="text-center has-splash q-pa-xl">
<img src="statics/600x600fabr.png" style="max-width: 200px">
<div class="text-h4">Welcome to the Fabricademy</div>
<div class="text-h4">Open Source Circular fashion catalogue</div>
<div style="width: 30%; margin: 32px auto;">
<q-separator/>
</div>
<div class="text-h6 text-grey">Browse and share your designs and help grow this library!</div>
<div class="row">
<div class="col text-h6 text-teal-6">
<q-btn flat>Featured</q-btn>
<q-btn flat>Most Recent</q-btn>
<q-btn flat>Most Popular</q-btn>
<q-btn flat>Collections</q-btn>
</div>
</div>
<SearchBox class="q-mt-xl"/>
</div>
</template>
<script>
import SearchBox from "../components/SearchBox";
export default {
// name: 'ComponentName',
components: {
SearchBox
},
data() {
return {};
}
};
</script>
<style>
.has-splash {
background-image: url(/statics/splash.jpg);
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
background-blend-mode: saturation;
background-color: rgba(255, 255, 255, 0.85);
}
</style>