This commit is contained in:
samaradel
2021-09-29 17:10:19 +02:00
parent 21a08a55d3
commit 1f54365ce4
2 changed files with 26 additions and 26 deletions

View File

@@ -1,11 +1,12 @@
<template>
<section class="py-10 pb-8 px-4 text-center">
<div class="max-w-4xl mx-auto mb-4" v-if="main">
<h2 class="lg:text-6xl uppercase leading-tight mb-6 font-bold font-heading">
<h2
class="lg:text-6xl uppercase leading-tight mb-6 font-bold font-heading"
>
{{ main.title }}
</h2>
<p class="text-gray-400 leading-relaxed"></p>
</div>
<div
v-if="id == 'support' || id == 'community'"
@@ -20,9 +21,9 @@
<g-image :src="img(logo.image)" />
</a>
<g-link v-else :href="logo.url">
<a v-else :href="logo.url">
<g-image :src="img(logo.image)" />
</g-link>
</a>
</div>
</div>
<div v-else class="flex flex-wrap -mx-8">
@@ -35,26 +36,25 @@
<g-image :src="img(logo.image)" />
</a>
</div>
<a
class="
inline-block
bg-white
text-lg
learn-button
hover:bg-gray-400
px-12
py-1
mr-5
my-4
border-2
shadow
border-black
"
v-if="main.button"
:href="main.link"
>{{ main.button }}</a
>
<a
class="
inline-block
bg-white
text-lg
learn-button
hover:bg-gray-400
px-12
py-1
mr-5
my-4
border-2
shadow
border-black
"
v-if="main.button"
:href="main.link"
>{{ main.button }}</a
>
</section>
</template>