feathers/docs/components/HomeCTATextSection.vue
Marshall Thompson ae85fa216f
feat(docs): New website and documentation pages (#2802)
* feat(docs) new docs site started

* Minor page edits

* feat(footer) fix spacing

* empty guides template

Co-authored-by: daffl <daff@neyeon.com>
2022-10-17 13:05:01 -06:00

15 lines
303 B
Vue

<script setup lang="ts">
import CTAButton from './CTAButton.vue'
defineProps({
text: String,
})
</script>
<template>
<div class="py-24 text-center">
<h2 class="text-lg font-bold mb-10 md:text-2xl lg:text-3xl">{{ text }}</h2>
<CTAButton primary>Get Started</CTAButton>
</div>
</template>