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>
14 lines
384 B
Vue
14 lines
384 B
Vue
<script setup lang="ts">
|
|
import CTAButton from './CTAButton.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<div class="py-6 md:py-0 px-12">
|
|
<div class="md:text-sm prose text-center md:text-left xl:text-xl">
|
|
<p>Build prototypes in minutes and production-ready apps in days.</p>
|
|
<p>Seriously.</p>
|
|
</div>
|
|
<CTAButton class="mt-6" primary>Learn more</CTAButton>
|
|
</div>
|
|
</template>
|