feathers/docs/components/HomeFeatureGridCard.vue
Marshall Thompson ae85fa216f
feat(docs): New website and documentation pages (#2802)
* feat(docs) new docs site started

* Minor page edits

* feat(footer) fix spacing

* empty guides template

Co-authored-by: daffl <daff@neyeon.com>
2022-10-17 13:05:01 -06:00

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>