32 lines
1.1 KiB
JavaScript
32 lines
1.1 KiB
JavaScript
import Layout from "@/components/layout/Layout"
|
|
import About5 from "@/components/sections/About5"
|
|
import Blog5 from "@/components/sections/Blog5"
|
|
import Client4 from "@/components/sections/Client4"
|
|
import Content6 from "@/components/sections/Content6"
|
|
import Cta2 from "@/components/sections/Cta2"
|
|
import Form4 from "@/components/sections/Form4"
|
|
import Funfacts3 from "@/components/sections/Funfacts3"
|
|
import Service8 from "@/components/sections/Service8"
|
|
import Slider4 from "@/components/sections/Slider4"
|
|
import Team2 from "@/components/sections/Team2"
|
|
import Testimonial4 from "@/components/sections/Testimonial4"
|
|
export default function Home5() {
|
|
|
|
return (
|
|
<>
|
|
<Layout headerStyle={5} footerStyle={5}>
|
|
<Slider4 />
|
|
<About5 />
|
|
<Service8 />
|
|
<Content6 />
|
|
<Team2 />
|
|
<Form4 />
|
|
<Funfacts3 />
|
|
<Testimonial4 />
|
|
<Client4 />
|
|
<Blog5 />
|
|
<Cta2 />
|
|
</Layout>
|
|
</>
|
|
)
|
|
} |