Moisés de Jesús Cortés Castellanos 24edbfebb4
ADD: Notificaciones en tiempo real (#3)
* ADD: Avances
* ADD: Usuarios conectados en tiempo real
2024-12-27 12:10:10 -06:00

21 lines
435 B
Vue

<script setup>
/** Propiedades */
defineProps({
subtitle: String,
title: String
})
</script>
<template>
<div class="text-center p-6 bg-primary dark:bg-primary-d border-b">
<slot />
<p class="pt-2 text-lg font-bold text-gray-50">
{{ title }}
</p>
<p v-if="subtitle"
class="text-sm text-gray-50"
>
{{ subtitle }}
</p>
</div>
</template>