contacts.js
1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
"use client";
import Breadcrumb from "@/components/Common/Breadcrumb";
import HeadTitle from "@/components/Common/HeadTitle";
import InnerBanner from "@/components/Common/InnerBanner";
import InnerContent from "@/components/Contacts/InnerContent";
import Head from "next/head";
const bannerData = [
{
image: "/image/inner-banner/contacts.png",
title: "Banner",
}
];
const headTitleData = [
{
title: "Let’s Connect",
descrition1:"Every strong project begins with clarity.",
descrition2:"Tell us what you’re imagining,we’ll help shape it into a finished reality."
}
];
const breadcrumbData = [
{
href: "/",
label: "Connect"
},
];
const ContactsPage = () => {
return (
<>
<Head>
<title>Akruti </title>
<meta name="description" content="Akruti" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="/favicon.ico" />
</Head>
<Breadcrumb breadcrumbData={breadcrumbData} />
<HeadTitle headTitleData={headTitleData[0] || []} />
<InnerBanner bannerData={bannerData[0] || []} />
<InnerContent />
</>
);
};
export default ContactsPage;