update button for map

This commit is contained in:
2022-01-19 16:26:57 +02:00
parent 858e234a2f
commit 30dbfe0502
4 changed files with 31 additions and 9 deletions

View File

@@ -3,8 +3,8 @@ id: farm_cta
title: JOIN A title: JOIN A
title2: WORLD OF FARMERS title2: WORLD OF FARMERS
image: ./farm_map.png image: ./farm_map.png
button: '' button: Explore ThreeFold Grid Capacity
link: '' link: https://explorer.threefold.io
--- ---
We are growing fast We are growing fast

View File

@@ -2,7 +2,7 @@
id: map id: map
title: THE THREEFOLD GRID title: THE THREEFOLD GRID
subtitle: NOW OPERATIONAL subtitle: NOW OPERATIONAL
button: More Stats button: Explore ThreeFold Grid Capacity
link: https://explorer.threefold.io link: https://explorer.threefold.io
image: ./map.png image: ./map.png
btn1: Become a Farmer btn1: Become a Farmer

View File

@@ -213,7 +213,7 @@
</h2> </h2>
<div v-html="cta.content" class="mt-6 mb-8 lg:text-2xl"></div> <div v-html="cta.content" class="mt-6 mb-8 lg:text-2xl"></div>
<g-image :src="cta.image" class="lg:my-20 mx-auto" /> <g-image :src="cta.image" class="lg:my-20 mx-auto" />
<!-- <a <a
class=" class="
inline-block inline-block
bg-white bg-white
@@ -252,7 +252,7 @@
v-else v-else
:href="cta.link" :href="cta.link"
>{{ cta.button }}</a >{{ cta.button }}</a
> --> >
</div> </div>
<div class="w-full mx-auto py-16" v-else-if="id == 'farm' && lastCta"> <div class="w-full mx-auto py-16" v-else-if="id == 'farm' && lastCta">

View File

@@ -44,8 +44,7 @@
rounded-full rounded-full
h-32 h-32
w-32 w-32
lg:h-60 lg:h-60 lg:w-60
lg:w-60
inline-flex inline-flex
items-center items-center
justify-center justify-center
@@ -67,8 +66,7 @@
rounded-full rounded-full
h-32 h-32
w-32 w-32
lg:h-60 lg:h-60 lg:w-60
lg:w-60
inline-flex inline-flex
items-center items-center
justify-center justify-center
@@ -88,7 +86,31 @@
{{ stats[2] }} {{ stats[2] }}
<span class="block text-2xl uppercase">cores</span> <span class="block text-2xl uppercase">cores</span>
</div> </div>
</div> </div>
</div>
<div class="my-4 mx-auto text-center">
<a
:href="section.link"
target="_blank"
class="
inline-block
bg-white
lg:text-lg
learn-button
hover:bg-gray-400
px-12
py-1
mr-5
border-2
shadow
border-black
"
>{{ section.button }}</a
>
</div> </div>
</section> </section>
</template> </template>