mirror of
https://github.com/feathersjs/feathers.git
synced 2025-12-08 19:46:22 +00:00
* feat(docs) new docs site started * Minor page edits * feat(footer) fix spacing * empty guides template Co-authored-by: daffl <daff@neyeon.com>
15 lines
303 B
Vue
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>
|