31 lines
694 B
Vue
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>
|