mirror of
https://github.com/feathersjs/feathers.git
synced 2025-12-08 19:46:22 +00:00
13 lines
450 B
Vue
13 lines
450 B
Vue
<script setup lang="ts">
|
|
import CTAButton from './CTAButton.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<div class="bg-neutral text-neutral-content flex flex-col items-center py-24" xl="py-32">
|
|
<h2 class="text-center pb-8 font-bold" md="text-xl px-16" lg="px-32 text-2xl">
|
|
Learn the basics and create your first real-time API in 15 minutes.
|
|
</h2>
|
|
<CTAButton href="/guides/basics/starting.html" primary>Quick Start</CTAButton>
|
|
</div>
|
|
</template>
|