home page update
This commit is contained in:
@@ -9,6 +9,22 @@
|
||||
:link="$page.markdownPage.link"
|
||||
/>
|
||||
|
||||
<SolutionsHeader
|
||||
v-if="$page.markdownPage.header"
|
||||
:header="$page.markdownPage.header"
|
||||
/>
|
||||
|
||||
<NewCard
|
||||
v-for="card in $page.markdownPage.cards"
|
||||
:key="card.id"
|
||||
:card="card"
|
||||
/>
|
||||
|
||||
<CallToAction
|
||||
v-if="$page.markdownPage.cta"
|
||||
:cta="$page.markdownPage.cta"
|
||||
/>
|
||||
|
||||
<logoShowcase
|
||||
v-if="$page.markdownPage.logos.length > 0"
|
||||
:logos="$page.markdownPage.logos"
|
||||
@@ -37,6 +53,31 @@
|
||||
header_altImg
|
||||
button
|
||||
link
|
||||
header{
|
||||
title
|
||||
subtitle
|
||||
content
|
||||
btn1
|
||||
link1
|
||||
btn2
|
||||
link2
|
||||
}
|
||||
cards{
|
||||
id
|
||||
title
|
||||
image
|
||||
button
|
||||
link
|
||||
order
|
||||
content
|
||||
}
|
||||
cta{
|
||||
id
|
||||
title
|
||||
content
|
||||
button
|
||||
link
|
||||
}
|
||||
logos{
|
||||
id
|
||||
image
|
||||
@@ -64,11 +105,22 @@
|
||||
|
||||
<script>
|
||||
import Header from "~/components/marketing/sections/cta-sections/Header.vue";
|
||||
import SolutionsHeader from "~/components/custom/sections/header/HeaderSection.vue";
|
||||
import NewCard from "~/components/marketing/sections/cta-sections/NewCard.vue";
|
||||
import CallToAction from "~/components/custom/sections/CallToAction.vue";
|
||||
import logoShowcase from "~/components/marketing/sections/cta-sections/logoShowcase.vue";
|
||||
import InTheNews from "~/components/marketing/sections/logo-clouds/off_white_grid.vue";
|
||||
import SignUp from "~/components/custom/sections/SignUp.vue";
|
||||
|
||||
export default {
|
||||
components: {
|
||||
Header,
|
||||
SolutionsHeader,
|
||||
NewCard,
|
||||
CallToAction,
|
||||
logoShowcase,
|
||||
InTheNews,
|
||||
SignUp,
|
||||
},
|
||||
metaInfo() {
|
||||
return {
|
||||
|
||||
Reference in New Issue
Block a user