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>
18 lines
437 B
Vue
18 lines
437 B
Vue
<script setup lang="ts">
|
|
defineProps({
|
|
title: String,
|
|
imgSrc: String,
|
|
description: String,
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div class="home-feature-card bg-base-100 bg-white shadow-xl p-8 space-y-4 z-10">
|
|
<div class="flex items-center justify-center">
|
|
<img :src="imgSrc" alt="" class="mx-auto w-42 h-42" />
|
|
</div>
|
|
<p class="font-bold text-xl">{{ title }}</p>
|
|
<p class="">{{ description }}</p>
|
|
</div>
|
|
</template>
|