Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/partnership/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const metadata = {
siteName: "PROJXON",
images: [
{
url: "/PROJXON.png",
url: "https://www.projxon.com/PROJXON.png",
width: 1200,
height: 630,
alt: "PROJXON logo",
Expand All @@ -32,7 +32,7 @@ export const metadata = {
card: "summary_large_image",
title: "Partner with PROJXON | Strategic Collaborations for Growth",
description: "Unlock new opportunities with PROJXON. Explore strategic partnerships that drive innovation, efficiency, and business success. Let’s grow together.",
images: ["/PROJXON.png"]
images: ["https://www.projxon.com/PROJXON.png"]
}
};

Expand Down
31 changes: 31 additions & 0 deletions app/services/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,37 @@ import ServiceGrid from "@/components/ServiceGrid";

import AOSWrapper from "@/components/AOSWrapper";

export const metadata = {
title: "PROJXON Services | Expert Business Consulting & Strategy",
description:
"Explore PROJXON’s consulting services in strategy, market research, and digital transformation. We provide data-driven solutions for business growth.",
metadataBase: new URL("https://www.projxon.com/services"),
openGraph: {
title: "PROJXON Services | Expert Business Consulting & Strategy",
description:
"Explore PROJXON’s consulting services in strategy, market research, and digital transformation. We provide data-driven solutions for business growth.",
url: "https://www.projxon.com/services",
siteName: "PROJXON",
images: [
{
url: "https://www.projxon.com/PROJXON.png",
width: 1200,
height: 630,
alt: "PROJXON logo",
},
],
type: "website",
},
twitter: {
card: "summary_large_image",
title: "PROJXON Services | Expert Business Consulting & Strategy",
description:
"Explore PROJXON’s consulting services in strategy, market research, and digital transformation. We provide data-driven solutions for business growth.",
images: ["https://www.projxon.com/PROJXON.png"],
},
};


const ServicesPage = () => {
return (
<>
Expand Down