haditha_ui/pages/hadith/index.vue

52 lines
1.4 KiB
Vue
Raw Normal View History

2025-02-11 10:17:22 +00:00
<template>
2025-02-18 12:56:13 +00:00
<HadithLayout>
<section-one></section-one>
<section-two></section-two>
2025-03-01 12:44:34 +00:00
<section-three></section-three>
<section-four></section-four>
<section-five></section-five>
2025-02-12 14:14:07 +00:00
</HadithLayout>
2025-02-11 10:17:22 +00:00
</template>
<script>
export default {
2025-02-11 12:49:27 +00:00
name: "hadith",
2025-02-11 10:17:22 +00:00
setup() {
useHead({
2025-02-11 12:49:27 +00:00
title: import.meta.env.VITE_HADITH_PAGE_TITLE,
meta: [
{ name: "description", content: "کاوش با هوش مصنوعی در احادیث اسلامی" },
],
2025-02-11 10:17:22 +00:00
bodyAttrs: {
2025-02-11 12:49:27 +00:00
class: import.meta.env.VITE_HADITH_SYSTEM,
2025-02-11 10:17:22 +00:00
},
});
definePageMeta({
layout: false,
2025-02-11 12:49:27 +00:00
name: "hadith",
2025-02-11 10:17:22 +00:00
});
},
components: {
2025-02-18 12:56:13 +00:00
SectionOne: defineAsyncComponent(() =>
import("@hadith/components/hadith/hero-page/SectionOne.vue")
2025-02-16 12:51:52 +00:00
),
2025-02-18 12:56:13 +00:00
SectionTwo: defineAsyncComponent(() =>
import("@hadith/components/hadith/hero-page/SectionTwo.vue")
2025-02-11 10:17:22 +00:00
),
2025-03-01 12:44:34 +00:00
SectionThree: defineAsyncComponent(() =>
import("@hadith/components/hadith/hero-page/SectionThree.vue")
),
SectionFour: defineAsyncComponent(() =>
import("@hadith/components/hadith/hero-page/SectionFour.vue")
),
SectionFive: defineAsyncComponent(() =>
import("@hadith/components/hadith/hero-page/SectionFive.vue")
),
2025-02-11 12:49:27 +00:00
HadithLayout: defineAsyncComponent(() =>
import("@hadith/layouts/HadithLayout.vue")
2025-02-11 10:17:22 +00:00
),
},
};
</script>
2025-02-26 07:52:21 +00:00
<style scoped></style>