File tree Expand file tree Collapse file tree 3 files changed +23
-9
lines changed Expand file tree Collapse file tree 3 files changed +23
-9
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,13 @@ import Pointers from "@/components/Pointers";
6
6
import Consultation from "@/components/Consultation" ;
7
7
import TeamsData from "./components/TeamsData" ;
8
8
9
+ import { Metadata } from "next" ;
10
+
11
+ export const metadata : Metadata = {
12
+ title : "About | Procedure" ,
13
+ description : "" ,
14
+ } ;
15
+
9
16
const About = ( ) => {
10
17
return (
11
18
< >
@@ -29,23 +36,21 @@ const About = () => {
29
36
</ PageNavbar >
30
37
</ div >
31
38
</ div >
32
- < PageBackgroundImage
39
+ < PageBackgroundImage
33
40
desktopImage = "https://procedure.tech/wp-content/uploads/2023/08/about-banner.jpg"
34
41
mobileImage = "https://procedure.tech/wp-content/uploads/2023/08/mob-about-banner.jpg"
35
42
alt = "About Banner"
36
43
/>
37
44
</ section >
38
45
< ClientsSection className = "mb-28" />
39
- < Pointers
46
+ < Pointers
40
47
pointers = { aboutPagePointerData }
41
48
eachElementClassName = "w-full md:w-[28%] lg:w-[28%] mr-0 md:mr-[5.3%] mb-12 md:mb-[5%]"
42
49
title = "Our Story"
43
50
/>
44
51
< TeamsData />
45
52
< section >
46
- < Consultation
47
- type = "transparent"
48
- />
53
+ < Consultation type = "transparent" />
49
54
</ section >
50
55
</ >
51
56
) ;
Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ import TeamSection from "@/app/components/TeamSection";
4
4
import Link from "next/link" ;
5
5
import JoinProcedure from "@/components/JoinProcedure" ;
6
6
import AgileDeliverySection from "./components/AgileDeliverySection" ;
7
+ import { Metadata } from "next" ;
8
+
9
+ export const metadata : Metadata = {
10
+ title : "Home | Procedure" ,
11
+ description : "" ,
12
+ } ;
7
13
8
14
export default function Home ( ) {
9
15
return (
@@ -27,10 +33,7 @@ export default function Home() {
27
33
Maximize the value of your business with our precise, insightful
28
34
and agile digital engineering solutions
29
35
</ p >
30
- < Link
31
- className = "primary-button bg-white"
32
- href = "/contact/#consult"
33
- >
36
+ < Link className = "primary-button bg-white" href = "/contact/#consult" >
34
37
Get a Free Consultation
35
38
</ Link >
36
39
</ div >
Original file line number Diff line number Diff line change 1
1
import PageNavbar from "@/components/PageNavbar" ;
2
2
import React from "react" ;
3
+ import { Metadata } from "next" ;
4
+
5
+ export const metadata : Metadata = {
6
+ title : "Privacy Policy | Procedure" ,
7
+ description : "" ,
8
+ } ;
3
9
4
10
const policyItems = [
5
11
{
You can’t perform that action at this time.
0 commit comments