-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHome.views.vue
46 lines (46 loc) · 1.5 KB
/
Home.views.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<script setup>
import HeaderComponent from "../components/home/HeaderComponent.vue"
import DividerComponent from "../components/home/DividerComponent.vue"
import SectionOneComponent from "../components/home/SectionOne.vue"
import SectionTwoComponent from "../components/home/SectionTwo.vue"
import SectionThreeComponent from "../components/home/SectionThree.vue"
import SectionFourComponent from "../components/home/SectionFour.vue"
import SectionFiveComponent from "../components/home/SectionFive.vue"
import SectionSixComponent from "../components/home/SectionSix.vue"
import SectionSevenComponent from "../components/home/SectionSeven.vue"
import FooterComponent from "../components/home/FooterComponent.vue"
</script>
<template>
<div>
<div id="header" class="sticky top-0 z-[10] bg-white pb-1">
<HeaderComponent/>
</div>
<div id="sectionOne">
<SectionOneComponent/>
</div>
<div id="divider">
<DividerComponent/>
</div>
<div id="why_us">
<SectionTwoComponent/>
</div>
<div id="our_prensence">
<SectionThreeComponent/>
</div>
<div id="world_image">
<SectionFourComponent/>
</div>
<div id="test_emprunt">
<SectionFiveComponent/>
</div>
<div id="testimony">
<SectionSixComponent/>
</div>
<div id="media_speaker">
<SectionSevenComponent/>
</div>
<div id="footer">
<FooterComponent/>
</div>
</div>
</template>