Update custom cta

This commit is contained in:
samaradel
2021-08-01 11:01:57 +02:00
parent 917ea3cd6e
commit 0fc4a83f10
7 changed files with 48 additions and 13 deletions

View File

@@ -43,7 +43,12 @@
</section>
</div>
<div class="container-fluid mx-auto pt-24">
<CustomCTA link="/" title="Join our community" />
<CustomCTA
v-for="edge in $page.allCustomCta.edges"
:key="edge.node.id"
:title="edge.node.title"
:link="edge.node.link"
/>
</div>
</Layout>
</template>
@@ -57,6 +62,15 @@
button
link
}
allCustomCta {
edges {
node {
id
title
link
}
}
}
}
</page-query>