haditha_ui/pages/hadith/chat-bot.vue
2025-02-26 11:22:21 +03:30

31 lines
694 B
Vue

<template>
<HadithLayout> </HadithLayout>
</template>
<script>
export default {
name: "hadithChatBot",
setup() {
useHead({
title: `${import.meta.env.VITE_HADITH_PAGE_TITLE} | چت بات `,
meta: [
{ name: "description", content: "کاوش با هوش مصنوعی در احادیث اسلامی" },
],
bodyAttrs: {
class: import.meta.env.VITE_HADITH_SYSTEM,
},
});
definePageMeta({
layout: false,
name: "hadithChatBot",
});
},
components: {
// SectionOne: defineAsyncComponent(() =>
// import("@hadith/components/hadith/hero-page/SectionOne.vue")
// ),
},
};
</script>
<style scoped></style>