-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.vue
83 lines (81 loc) · 2.44 KB
/
index.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
<template>
<div>
<Hero
:heading="page.heading"
:subheading="page.subheading"
: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"
>
<h3>
{{ page.mainpitch.title }}
</h3>
<p>
{{ page.mainpitch.description }}
</p>
<h2>
{{ page.title }}
</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 px-6 border rounded-lg shadow justify-top"
>
<img class="h-32" :src="blurb.image" />
<p class="mt-2 text-justify">{{ blurb.text }}.</p>
</div>
</div>
<p class="text-center">
<nuxt-link
to="/products"
class="inline-flex items-center px-6 py-3 text-base font-medium leading-6 transition duration-150 ease-in-out bg-white border border-gray-300 rounded-md text-kaldi hover:text-orange-500 focus:outline-none focus:border-blue-300 focus:shadow-outline-blue active:text-gray-800 active:bg-gray-50"
>
See all products
</nuxt-link>
</p>
<h2>Latest stories</h2>
<div class="lg:grid lg:grid-cols-2 lg:gap-8">
<div
v-for="(post, index) in posts"
:key="index"
class="px-6 border rounded-lg shadow"
>
<h3>
<nuxt-link :to="`/blog/${post.slug}`">{{ post.title }}</nuxt-link>
</h3>
<p>
{{ post.description }}
</p>
<p>
<nuxt-link :to="`/blog/${post.slug}`">Read more</nuxt-link>
</p>
</div>
</div>
<p class="text-center">
<nuxt-link
to="/blog"
class="inline-flex items-center px-6 py-3 text-base font-medium leading-6 transition duration-150 ease-in-out bg-white border border-gray-300 rounded-md text-kaldi hover:text-orange-500 focus:outline-none focus:border-blue-300 focus:shadow-outline-blue active:text-gray-800 active:bg-gray-50"
>
Read more
</nuxt-link>
</p>
</div>
</div>
</template>
<script>
export default {
async asyncData({ $content }) {
const page = await $content('index').fetch()
const posts = await $content('blog').fetch()
return {
page,
posts,
}
},
}
</script>