28 lines
752 B
JavaScript
28 lines
752 B
JavaScript
import Footer3 from "@/components/footers/Footer3";
|
|
import Header4 from "@/components/headers/Header4";
|
|
import Contact from "@/components/otherPages/Contact";
|
|
// import OfficeLocations from "@/components/otherPages/OfficeLocations";
|
|
|
|
import React from "react";
|
|
export const metadata = {
|
|
title:
|
|
"Contact Us || Advitex - Finance and Business Consulting React Nextjs Template",
|
|
description:
|
|
"Advitex - Finance and Business Consulting React Nextjs Template",
|
|
};
|
|
export default function ContactUsPage() {
|
|
return (
|
|
<>
|
|
<div className="wrap-page-header">
|
|
<Header4 />
|
|
|
|
<Contact />
|
|
</div>
|
|
{/* <div className="main-content style-1">
|
|
<OfficeLocations />
|
|
</div> */}
|
|
<Footer3 />
|
|
</>
|
|
);
|
|
}
|