first commit
This commit is contained in:
27
app/(otherPages)/contact-us/page.jsx
Normal file
27
app/(otherPages)/contact-us/page.jsx
Normal file
@ -0,0 +1,27 @@
|
||||
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 />
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user