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>
17 lines
507 B
Vue
17 lines
507 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">
|
|
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh
|
|
euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.
|
|
</h2>
|
|
<CTAButton primary>Learn More</CTAButton>
|
|
</div>
|
|
</template>
|