importAboutUsfrom"../components/about-us/AboutUs";importContactUsfrom"../components/contact-us/ContactUs";importHomefrom"../components/home/Home";importLayoutfrom"../components/layout/Layout";import{loadUser}from"../redux/actions/userActions";import{wrapper}from"../redux/store";exportdefaultfunctioncontactUsPage(){return(<Layout><ContactUs/></Layout>);}/** For server side rendering */exportconstgetServerSideProps=wrapper.getServerSideProps(store=>async({req,query})=>{// Get the menu data.// get the locations data.// await store.dispatch(loadUser())return{props:{},};});