40 lines
935 B
Vue
40 lines
935 B
Vue
<template>
|
|
<HadithLayout>
|
|
<section-one></section-one>
|
|
<section-two></section-two>
|
|
</HadithLayout>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: "hadith",
|
|
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: "hadith",
|
|
});
|
|
},
|
|
components: {
|
|
SectionOne: defineAsyncComponent(() =>
|
|
import("@hadith/components/hadith/hero-page/SectionOne.vue")
|
|
),
|
|
SectionTwo: defineAsyncComponent(() =>
|
|
import("@hadith/components/hadith/hero-page/SectionTwo.vue")
|
|
),
|
|
HadithLayout: defineAsyncComponent(() =>
|
|
import("@hadith/layouts/HadithLayout.vue")
|
|
),
|
|
},
|
|
};
|
|
</script>
|
|
<style scoped></style>
|