[READ-ONLY] Mirror of https://github.com/danielroe/dwaring87-webdev-wedding. Marissa & David's Wedding Website!
0

Configure Feed

Select the types of activity you want to include in your feed.

451 B 16 lines
1<script setup> 2 const props = defineProps({ 3 title: String 4 }) 5</script> 6 7<template> 8 <div class="bg-gradient-to-b from-white to-gray-100 my-8 mx-1 sm:mx-2 md:mx-8 border border-white shadow-md rounded-md"> 9 <div v-if="title" class="bg-gradient-to-b from-emerald-700 to-emerald-800 opacity-90 p-4 rounded-t-md"> 10 <h3 class="text-white">{{ title }}</h3> 11 </div> 12 <div class="p-4"> 13 <slot></slot> 14 </div> 15 </div> 16</template>