feat: add captain paywall component

This commit is contained in:
Shivam Mishra
2025-01-22 18:25:08 +05:30
parent 1bf76c8008
commit 85939a7a14
@@ -0,0 +1,19 @@
<script setup>
import BasePaywallModal from 'dashboard/routes/dashboard/settings/components/BasePaywallModal.vue';
const emit = defineEmits(['upgrade']);
</script>
<template>
<div
class="w-full max-w-[960px] mx-auto h-full max-h-[448px] grid place-content-center"
>
<BasePaywallModal
class="mx-auto"
feature-prefix="CAPTAIN"
i18n-key="PAYWALL"
is-on-chatwoot-cloud
@upgrade="emit('upgrade')"
/>
</div>
</template>