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
<template>
<q-card class="bg-teal-5 text-white q-pa-md q-mx-xl">
<q-card-section>
<div class="text-h4">Upload your design, it's easy!</div>
</q-card-section>
<q-card-section>
<p class="text-subtitle1">
Watch our Tutorial to see how it works, or go directly to the Wizard,
it will guide you through the process step-by-step.
</p>
</q-card-section>
<q-card-section>
<div class="row no-wrap">
<div class="col-auto">
<q-btn outline class="bg-white text-teal-5 q-mr-md">
<q-icon left size="1em" name="fas fa-tv"/>Watch Tutorial
</q-btn>
</div>
<div class="col-auto">
<q-btn class="text-white bg-teal-7">
<q-icon left size="1em" name="fas fa-magic"/>Start wizard
</q-btn>
</div>
</div>
</q-card-section>
</q-card>
</template>
<script>
export default {
// name: 'ComponentName',
data() {
return {};
}
};
</script>
<style>
</style>