mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-31 19:17:48 +00:00
<img width="1439" alt="Screenshot 2024-10-30 at 8 58 12 PM" src="https://github.com/user-attachments/assets/26231270-5e73-40fb-9efa-c661585ebe7c"> Fixes https://linear.app/chatwoot/project/campaign-redesign-f82bede26ca7/overview --------- Co-authored-by: Pranav <pranavrajs@gmail.com> Co-authored-by: Shivam Mishra <scm.mymail@gmail.com>
48 lines
1.3 KiB
Vue
48 lines
1.3 KiB
Vue
<script setup>
|
|
defineProps({
|
|
title: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
subtitle: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<section
|
|
class="relative flex flex-col items-center justify-center w-full h-full overflow-hidden"
|
|
>
|
|
<div
|
|
class="relative w-full max-w-[940px] mx-auto overflow-hidden h-full max-h-[448px]"
|
|
>
|
|
<div
|
|
class="w-full h-full space-y-4 overflow-y-hidden opacity-50 pointer-events-none"
|
|
>
|
|
<slot name="empty-state-item" />
|
|
</div>
|
|
<div
|
|
class="absolute inset-x-0 bottom-0 flex flex-col items-center justify-end w-full h-full pb-20 bg-gradient-to-t from-n-background from-25% dark:from-n-background to-transparent"
|
|
>
|
|
<div class="flex flex-col items-center justify-center gap-6">
|
|
<div class="flex flex-col items-center justify-center gap-3">
|
|
<h2
|
|
class="text-3xl font-medium text-center text-slate-900 dark:text-white font-interDisplay"
|
|
>
|
|
{{ title }}
|
|
</h2>
|
|
<p
|
|
class="max-w-xl text-base text-center text-slate-600 dark:text-slate-300 font-interDisplay tracking-[0.3px]"
|
|
>
|
|
{{ subtitle }}
|
|
</p>
|
|
</div>
|
|
<slot name="actions" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</template>
|