34 lines
1.1 KiB
TypeScript
34 lines
1.1 KiB
TypeScript
import type { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Our Projects | Tech Master - Portfolio of Digital Solutions",
|
|
description: "Explore our portfolio of successful projects including ERP systems, e-commerce platforms, payment solutions, legal software, and business intelligence dashboards developed in Dubai.",
|
|
keywords: [
|
|
"portfolio projects",
|
|
"ERP systems Dubai",
|
|
"e-commerce development",
|
|
"payment platforms",
|
|
"legal software",
|
|
"business intelligence",
|
|
"web applications",
|
|
"mobile apps",
|
|
"enterprise software",
|
|
"fintech solutions"
|
|
],
|
|
openGraph: {
|
|
title: "Our Projects | Tech Master - Portfolio of Digital Solutions",
|
|
description: "Portfolio of successful projects including ERP systems, e-commerce platforms, payment solutions, and business intelligence dashboards.",
|
|
url: "https://tech-masters.guru/projects",
|
|
},
|
|
alternates: {
|
|
canonical: "/projects",
|
|
},
|
|
};
|
|
|
|
export default function ProjectsLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return children;
|
|
}
|