init cta
This commit is contained in:
@@ -14,4 +14,5 @@ link: "#"
|
|||||||
brandPanel: about_brandPanel
|
brandPanel: about_brandPanel
|
||||||
brandPanel2: about_brandPanel2
|
brandPanel2: about_brandPanel2
|
||||||
brandPanel3: about_brandPanel3
|
brandPanel3: about_brandPanel3
|
||||||
|
cta: about_cta
|
||||||
---
|
---
|
||||||
|
|||||||
BIN
content/page/about-us/cta/about_join.png
Normal file
BIN
content/page/about-us/cta/about_join.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 63 KiB |
10
content/page/about-us/cta/index.md
Normal file
10
content/page/about-us/cta/index.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
id: about_cta
|
||||||
|
title: JOIN OUR JOURNEY
|
||||||
|
image: ./about_join.png
|
||||||
|
button: Join Us
|
||||||
|
link: "#"
|
||||||
|
---
|
||||||
|
Join us on our journey to build the digital
|
||||||
|
<br />
|
||||||
|
infrastructure that will connect humanity
|
||||||
@@ -5,32 +5,27 @@
|
|||||||
pink: id == 'home',
|
pink: id == 'home',
|
||||||
}"
|
}"
|
||||||
>
|
>
|
||||||
<!-- why -->
|
<!-- about-us -->
|
||||||
<div class="w-full max-w-2xl mx-auto py-12" v-if="id == 'why'">
|
<div class="w-full max-w-2xl mx-auto py-12" v-if="id == 'about-us'">
|
||||||
<h2
|
<h2
|
||||||
v-if="cta.title"
|
v-if="cta.title"
|
||||||
class="
|
class="
|
||||||
text-4xl text-center
|
lg:text-5xl
|
||||||
|
text-center
|
||||||
uppercase
|
uppercase
|
||||||
mb-2
|
mb-2
|
||||||
leading-none
|
leading-none
|
||||||
font-light font-heading
|
font-bold font-heading
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
{{ cta.title }}
|
{{ cta.title }}
|
||||||
</h2>
|
</h2>
|
||||||
<span
|
<div
|
||||||
class="
|
v-html="cta.content"
|
||||||
text-center
|
class="mt-6 mb-8 lg:text-2xl text-gray-800"
|
||||||
uppercase
|
></div>
|
||||||
leading-none
|
<g-image :src="cta.image" class="my-10" />
|
||||||
text-4xl text-gray-800
|
|
||||||
font-black font-heading
|
|
||||||
"
|
|
||||||
>
|
|
||||||
{{ cta.slogan }}
|
|
||||||
</span>
|
|
||||||
<div v-html="cta.content" class="mt-6 mb-8 text-gray-600"></div>
|
|
||||||
<div class="mt-8 tracking-wide leading-loose" v-if="cta.video_button">
|
<div class="mt-8 tracking-wide leading-loose" v-if="cta.video_button">
|
||||||
<a
|
<a
|
||||||
@click="toggleModal"
|
@click="toggleModal"
|
||||||
@@ -45,73 +40,51 @@
|
|||||||
py-2
|
py-2
|
||||||
mr-5
|
mr-5
|
||||||
mb-4
|
mb-4
|
||||||
rounded
|
|
||||||
shadow
|
shadow
|
||||||
rounded-full
|
rounded-full
|
||||||
"
|
"
|
||||||
>{{ cta.video_button }}</a
|
>{{ cta.video_button }}</a
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
<g-link
|
<a
|
||||||
class="
|
class="
|
||||||
inline-block
|
inline-block
|
||||||
bg-blue-900
|
bg-white
|
||||||
text-md
|
text-sm
|
||||||
learn-button
|
learn-button
|
||||||
hover:bg-blue-800
|
hover:bg-gray-400
|
||||||
text-gray-100
|
|
||||||
px-12
|
px-12
|
||||||
py-2
|
py-1
|
||||||
mr-5
|
mr-5
|
||||||
mb-4
|
my-4
|
||||||
rounded
|
border-2
|
||||||
shadow
|
shadow
|
||||||
rounded-full
|
border-black
|
||||||
"
|
"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
v-if="cta.button"
|
v-if="cta.button && cta.link.includes('http')"
|
||||||
:to="cta.link"
|
:href="cta.link"
|
||||||
>{{ cta.button }}</g-link
|
>{{ cta.button }}</a
|
||||||
>
|
>
|
||||||
<g-link
|
|
||||||
|
<a
|
||||||
class="
|
class="
|
||||||
inline-block
|
inline-block
|
||||||
bg-blue-900
|
bg-white
|
||||||
text-sm
|
text-sm
|
||||||
learn-button
|
learn-button
|
||||||
hover:bg-blue-800
|
hover:bg-gray-400
|
||||||
text-gray-100
|
|
||||||
px-12
|
px-12
|
||||||
py-2
|
py-1
|
||||||
mr-5
|
mr-5
|
||||||
mb-4
|
my-4
|
||||||
rounded
|
border-2
|
||||||
shadow
|
shadow
|
||||||
rounded-full
|
border-black
|
||||||
"
|
"
|
||||||
v-if="cta.button2"
|
v-else
|
||||||
:to="cta.link2"
|
:href="cta.link"
|
||||||
>{{ cta.button2 }}</g-link
|
>{{ cta.button }}</a
|
||||||
>
|
|
||||||
<g-link
|
|
||||||
class="
|
|
||||||
inline-block
|
|
||||||
bg-blue-900
|
|
||||||
text-sm
|
|
||||||
learn-button
|
|
||||||
hover:bg-blue-800
|
|
||||||
text-gray-100
|
|
||||||
px-12
|
|
||||||
py-2
|
|
||||||
mr-5
|
|
||||||
mb-4
|
|
||||||
rounded
|
|
||||||
shadow
|
|
||||||
rounded-full
|
|
||||||
"
|
|
||||||
v-if="cta.button3"
|
|
||||||
:to="cta.link3"
|
|
||||||
>{{ cta.button3 }}</g-link
|
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -55,6 +55,11 @@
|
|||||||
</div> -->
|
</div> -->
|
||||||
</div>
|
</div>
|
||||||
<div class="container sm:pxi-0 mx-auto overflow-x-hidden py-5">
|
<div class="container sm:pxi-0 mx-auto overflow-x-hidden py-5">
|
||||||
|
<CallToAction
|
||||||
|
:id="$page.markdownPage.id"
|
||||||
|
v-if="$page.markdownPage.id == 'about-us'"
|
||||||
|
:cta="$page.markdownPage.cta"
|
||||||
|
/>
|
||||||
<!-- <SignUp
|
<!-- <SignUp
|
||||||
v-if="$page.markdownPage.signup"
|
v-if="$page.markdownPage.signup"
|
||||||
:signup="$page.markdownPage.signup"
|
:signup="$page.markdownPage.signup"
|
||||||
@@ -105,11 +110,6 @@
|
|||||||
:button="$page.markdownPage.button"
|
:button="$page.markdownPage.button"
|
||||||
:link="$page.markdownPage.link"
|
:link="$page.markdownPage.link"
|
||||||
/>
|
/>
|
||||||
<CallToAction
|
|
||||||
:id="$page.markdownPage.id"
|
|
||||||
v-if="$page.markdownPage.id == 'tft'"
|
|
||||||
:cta="$page.markdownPage.cta"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<BrandPanel
|
<BrandPanel
|
||||||
:id="$page.markdownPage.id"
|
:id="$page.markdownPage.id"
|
||||||
@@ -387,8 +387,8 @@
|
|||||||
}
|
}
|
||||||
cta{
|
cta{
|
||||||
title
|
title
|
||||||
slogan
|
|
||||||
content
|
content
|
||||||
|
image
|
||||||
button
|
button
|
||||||
link
|
link
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user