mirror of
https://github.com/feathersjs/feathers.git
synced 2025-12-08 19:46:22 +00:00
14 lines
439 B
Vue
14 lines
439 B
Vue
<script setup lang="ts">
|
|
import CTAButton from './CTAButton.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<div class="py-6 md:py-0 px-12 text-center">
|
|
<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 href="/guides/basics/generator.html" class="mt-6" primary>Build a chat app</CTAButton>
|
|
</div>
|
|
</template>
|