37 lines
1.2 KiB
TypeScript
37 lines
1.2 KiB
TypeScript
|
|
import Layout from "@/components/layout/Layout"
|
|
import Section1 from '@/components/sections/home5/section1'
|
|
import Section10 from '@/components/sections/home5/section10'
|
|
import Section11 from '@/components/sections/home5/section11'
|
|
import Section12 from '@/components/sections/home5/section12'
|
|
import Section2 from '@/components/sections/home5/section2'
|
|
import Section3 from '@/components/sections/home5/section3'
|
|
import Section4 from '@/components/sections/home5/section4'
|
|
import Section5 from '@/components/sections/home5/section5'
|
|
import Section6 from '@/components/sections/home5/section6'
|
|
import Section7 from '@/components/sections/home5/section7'
|
|
import Section8 from '@/components/sections/home5/section8'
|
|
import Section9 from '@/components/sections/home5/section9'
|
|
export default function Home5() {
|
|
|
|
return (
|
|
<>
|
|
<Layout headerStyle={5} footerStyle={5}>
|
|
<img src="/assets/img/bg/body-bg1.png" alt="" className="body-bg1" id="body-bg1" />
|
|
|
|
<Section1 />
|
|
<Section2 />
|
|
<Section3 />
|
|
<Section4 />
|
|
<Section5 />
|
|
<Section6 />
|
|
<Section7 />
|
|
<Section8 />
|
|
<Section9 />
|
|
<Section10 />
|
|
<Section11 />
|
|
<Section12 />
|
|
</Layout>
|
|
</>
|
|
)
|
|
} |