Skip to content

Commit 1eb4e26

Browse files
committed
2 parents 34f71e9 + 09e855e commit 1eb4e26

File tree

4 files changed

+24
-8
lines changed

4 files changed

+24
-8
lines changed

CNAME

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
procedure.tech
2+
www.procedure.tech

src/app/about/page.tsx

Lines changed: 9 additions & 4 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
<>
@@ -36,16 +43,14 @@ const About = () => {
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)