-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathproducts.vue
99 lines (97 loc) · 2.56 KB
/
products.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
99
<template>
<div>
<Hero :heading="page.title" :image="page.image" />
<div
class="px-8 mx-auto mt-12 prose sm:px-6 md:px-4 lg:px-2 xl:px-0 xl:prose-xl lg:prose-lg md:prose-md"
>
<h2>
{{ page.heading }}
</h2>
<p>
{{ page.description }}
</p>
<div class="lg:grid lg:grid-cols-2 lg:gap-8">
<div
v-for="(blurb, index) in page.intro.blurbs"
:key="index"
class="flex flex-col items-center justify-top"
>
<img class="h-32" :src="blurb.image" />
<p class="mt-2 text-justify">{{ blurb.text }}.</p>
</div>
</div>
<h3>
{{ page.main.heading }}
</h3>
<p>
{{ page.main.description }}
</p>
<div class="lg:grid lg:grid-cols-2 lg:gap-4">
<img
class="rounded-lg"
:src="page.main.image1.image"
:alt="page.main.image1.alt"
/>
<img
class="rounded-lg"
:src="page.main.image2.image"
:alt="page.main.image2.alt"
/>
</div>
<div class="lg:grid lg:grid-cols-1 lg:gap-4">
<img
class="rounded-lg"
:src="page.main.image3.image"
:alt="page.main.image3.alt"
/>
</div>
<div>
<p
v-for="(testimonial, index) in page.testimonials"
:key="index"
class="inline-block w-full p-6 text-base bg-gray-100 border-l-4 border-gray-300 rounded-lg"
>
{{ testimonial.quote }}<br />
–{{ testimonial.author }}
</p>
</div>
</div>
<Hero :image="page.full_image" />
<div
class="px-8 mx-auto mt-12 prose sm:px-6 md:px-4 lg:px-2 xl:px-0 xl:prose-2xl lg:prose-xl md:prose-lg"
>
<h3>
{{ page.pricing.heading }}
</h3>
<p>
{{ page.pricing.description }}
</p>
<div class="lg:grid lg:grid-cols-3 lg:gap-8">
<div v-for="(plan, i) in page.pricing.plans" :key="i">
<h4 class="text-center">
{{ plan.plan }}
</h4>
<p class="text-4xl font-bold text-center text-kaldi">
${{ plan.price }}
</p>
<p class="text-base">{{ plan.description }}</p>
<ul class="text-base">
<li v-for="(item, j) in plan.items" :key="j">
{{ item }}
</li>
</ul>
</div>
</div>
</div>
</div>
</template>
<script>
export default {
async asyncData({ $content }) {
const page = await $content('products').fetch()
return {
page,
}
},
}
</script>