Skip to content

Commit 09e855e

Browse files
committed
Adds metadata for home, about, privacy policy
1 parent ae21e1d commit 09e855e

File tree

3 files changed

+23
-9
lines changed

3 files changed

+23
-9
lines changed

src/app/about/page.tsx

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ import Pointers from "@/components/Pointers";
66
import Consultation from "@/components/Consultation";
77
import TeamsData from "./components/TeamsData";
88

9+
import { Metadata } from "next";
10+
11+
export const metadata: Metadata = {
12+
title: "About | Procedure",
13+
description: "",
14+
};
15+
916
const About = () => {
1017
return (
1118
<>
@@ -29,23 +36,21 @@ const About = () => {
2936
</PageNavbar>
3037
</div>
3138
</div>
32-
<PageBackgroundImage
39+
<PageBackgroundImage
3340
desktopImage="https://procedure.tech/wp-content/uploads/2023/08/about-banner.jpg"
3441
mobileImage="https://procedure.tech/wp-content/uploads/2023/08/mob-about-banner.jpg"
3542
alt="About Banner"
3643
/>
3744
</section>
3845
<ClientsSection className="mb-28" />
39-
<Pointers
46+
<Pointers
4047
pointers={aboutPagePointerData}
4148
eachElementClassName="w-full md:w-[28%] lg:w-[28%] mr-0 md:mr-[5.3%] mb-12 md:mb-[5%]"
4249
title="Our Story"
4350
/>
4451
<TeamsData />
4552
<section>
46-
<Consultation
47-
type="transparent"
48-
/>
53+
<Consultation type="transparent" />
4954
</section>
5055
</>
5156
);

src/app/page.tsx

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ import TeamSection from "@/app/components/TeamSection";
44
import Link from "next/link";
55
import JoinProcedure from "@/components/JoinProcedure";
66
import AgileDeliverySection from "./components/AgileDeliverySection";
7+
import { Metadata } from "next";
8+
9+
export const metadata: Metadata = {
10+
title: "Home | Procedure",
11+
description: "",
12+
};
713

814
export default function Home() {
915
return (
@@ -27,10 +33,7 @@ export default function Home() {
2733
Maximize the value of your business with our precise, insightful
2834
and agile digital engineering solutions
2935
</p>
30-
<Link
31-
className="primary-button bg-white"
32-
href="/contact/#consult"
33-
>
36+
<Link className="primary-button bg-white" href="/contact/#consult">
3437
Get a Free Consultation
3538
</Link>
3639
</div>

src/app/privacy-policy/page.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
import PageNavbar from "@/components/PageNavbar";
22
import React from "react";
3+
import { Metadata } from "next";
4+
5+
export const metadata: Metadata = {
6+
title: "Privacy Policy | Procedure",
7+
description: "",
8+
};
39

410
const policyItems = [
511
{

0 commit comments

Comments
 (0)