added support page
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
<div class="grid grid-cols-1 gap-16">
|
||||
<div class="lg:grid lg:grid-cols-3 lg:gap-8">
|
||||
<h2 class="text-4xl mb-6 leading-tight font-semibold font-heading">
|
||||
Get in touch
|
||||
E-MAIL US
|
||||
</h2>
|
||||
<div
|
||||
class="mt-8 grid grid-cols-1 gap-12 sm:grid-cols-2 sm:gap-x-8 sm:gap-y-12 lg:mt-0 lg:col-span-2"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<div class="py-0 mb-5 mx-4">
|
||||
<div class="text-center mx-auto my-4" v-if="id == 'why'">
|
||||
<div class="text-center mx-auto my-4" v-if="id == 'why'">
|
||||
<h1 class="text-4xl text-gray-900 font-light sm:text-9xl sm:leading-10">
|
||||
{{ main.title }} <span class="font-extrabold">{{ main.subtitle }}</span>
|
||||
</h1>
|
||||
@@ -26,7 +26,7 @@
|
||||
class="grid grid-cols-1 gap-4 sm:grid-cols-3 text-center"
|
||||
v-if="id == 'token'"
|
||||
>
|
||||
<a
|
||||
<a
|
||||
v-for="(product, idx) in products"
|
||||
target="_blank"
|
||||
:key="idx"
|
||||
@@ -117,7 +117,7 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="grid grid-cols-1 gap-4 sm:grid-cols-2 text-center" v-else>
|
||||
<div class="grid grid-cols-1 gap-4 sm:grid-cols-3 text-center" v-else>
|
||||
<a
|
||||
v-for="(product, idx) in products"
|
||||
target="_blank"
|
||||
@@ -132,13 +132,14 @@
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div v-if="main.button" class="my-10 text-center">
|
||||
<!-- <a
|
||||
<a
|
||||
v-if="main.button"
|
||||
class="bg-blue-900 text-sm learn-button hover:bg-blue-800 text-gray-100 px-12 py-2 mr-5 rounded shadow rounded-full"
|
||||
:href="main.link"
|
||||
>{{ main.button }}</a
|
||||
> -->
|
||||
>
|
||||
|
||||
<a
|
||||
v-if="main.link.includes('http')"
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
|
||||
<div class="grid grid-cols-1 gap-4 sm:grid-cols-3">
|
||||
<a
|
||||
v-for="(product, idx) in products"
|
||||
v-for="(product, idx) in products"
|
||||
target="_blank"
|
||||
:key="idx"
|
||||
:href="product.url"
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
|
||||
<Map
|
||||
v-if="$page.markdownPage.stats"
|
||||
:section="$page.markdownPage.stats"
|
||||
:section="$page.markdownPage.stats"
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -103,6 +103,47 @@
|
||||
v-if="$page.markdownPage.cta2"
|
||||
:cta="$page.markdownPage.cta2"
|
||||
/>
|
||||
|
||||
<ShowcaseProducts
|
||||
v-if="
|
||||
$page.markdownPage.productData2 &&
|
||||
$page.markdownPage.productData2.length > 0
|
||||
"
|
||||
:id="$page.markdownPage.id"
|
||||
:main="$page.markdownPage.productsMain2"
|
||||
:products="$page.markdownPage.productData2"
|
||||
/>
|
||||
|
||||
<SolutionsHeader
|
||||
v-if="$page.markdownPage.header"
|
||||
:header="$page.markdownPage.header"
|
||||
/>
|
||||
|
||||
<g-image
|
||||
v-if="$page.markdownPage.solution_image2"
|
||||
:src="$page.markdownPage.solution_image2.src"
|
||||
/>
|
||||
|
||||
<SolutionsHeader
|
||||
v-if="$page.markdownPage.header2"
|
||||
:header="$page.markdownPage.header2"
|
||||
/>
|
||||
|
||||
<SolutionsHeader
|
||||
v-if="$page.markdownPage.header3"
|
||||
:header="$page.markdownPage.header3"
|
||||
/>
|
||||
|
||||
<logoShowcase
|
||||
v-if="$page.markdownPage.logos.length > 0"
|
||||
:logos="$page.markdownPage.logos"
|
||||
/>
|
||||
|
||||
<GetInTouch
|
||||
:contacts="$page.markdownPage.contactData"
|
||||
v-if="$page.markdownPage.contactData.length > 0"
|
||||
/>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="container sm:pxi-0 mx-auto overflow-x-hidden py-5"></div>
|
||||
@@ -126,6 +167,34 @@
|
||||
button
|
||||
link
|
||||
solution_image
|
||||
solution_image2
|
||||
header{
|
||||
title
|
||||
subtitle
|
||||
content
|
||||
btn1
|
||||
link1
|
||||
btn2
|
||||
link2
|
||||
}
|
||||
header2{
|
||||
title
|
||||
subtitle
|
||||
content
|
||||
btn1
|
||||
link1
|
||||
btn2
|
||||
link2
|
||||
}
|
||||
header3{
|
||||
title
|
||||
subtitle
|
||||
content
|
||||
btn1
|
||||
link1
|
||||
btn2
|
||||
link2
|
||||
}
|
||||
productsMain{
|
||||
id
|
||||
title
|
||||
@@ -143,6 +212,23 @@
|
||||
button
|
||||
link
|
||||
}
|
||||
productsMain2{
|
||||
id
|
||||
title
|
||||
subtitle
|
||||
content
|
||||
button
|
||||
link
|
||||
# image
|
||||
}
|
||||
productData2{
|
||||
id
|
||||
title
|
||||
content
|
||||
image
|
||||
button
|
||||
link
|
||||
}
|
||||
appsMain{
|
||||
id
|
||||
title
|
||||
@@ -175,6 +261,7 @@
|
||||
logos{
|
||||
id
|
||||
image
|
||||
url
|
||||
}
|
||||
cta{
|
||||
title
|
||||
@@ -231,6 +318,12 @@
|
||||
question
|
||||
content
|
||||
}
|
||||
contactData{
|
||||
id
|
||||
title
|
||||
mail
|
||||
phone
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user