zip-van/pages/index.js
2025-09-12 18:13:06 +05:30

48 lines
1.8 KiB
JavaScript

import Layout from "@/components/layout/Layout"
import About4 from "@/components/sections/About4"
import Banner1 from "@/components/sections/Banner1"
import Blog4 from "@/components/sections/Blog4"
import Client3 from "@/components/sections/Client3"
import Content5 from "@/components/sections/Content5"
import Form3 from "@/components/sections/Form3"
import Funfacts2 from "@/components/sections/Funfacts2"
import Process3 from "@/components/sections/Process3"
import Service6 from "@/components/sections/Service6"
import Service7 from "@/components/sections/Service7"
import Testimonial3 from "@/components/sections/Testimonial3"
import Slider2 from "@/components/sections/slider"
import Funfacts4 from "@/components/sections/Funfacts4"
import Location from "@/components/sections/Location"
import Offer1 from "@/components/sections/Offer1"
import ZipvanQuote from "@/components/sections/ZipvanQuote"
import ZipvanSection from "@/components/sections/pricing-tool"
import ReasonsToChoose from "@/components/sections/Choose"
export default function Home4() {
return (
<>
<Layout headerStyle={4} footerStyle={2}>
<Banner1 />
<Funfacts4 />
<ZipvanSection />
<Slider2 />
<ReasonsToChoose />
{/* <Service6 /> */}
{/* <About4 /> */}
{/* <Service7 /> */}
{/* <Content5 /> */}
{/* <Process3 /> */}
{/* <Offer1 /> */}
{/* <ZipvanQuote /> */}
<Location />
{/* <Funfacts2 /> */}
{/* <Form3 /> */}
{/* <Testimonial3 /> */}
{/* <Client3 /> */}
{/* <div className="divider" /> */}
{/* <Blog4 /> */}
</Layout>
</>
)
}