enhance ssr, add routes and enhance the header styles

This commit is contained in:
Mohammed Al-yaseen
2025-07-29 16:12:21 +03:00
parent b803532cde
commit 01ed3a2b7f
16 changed files with 1005 additions and 343 deletions

View File

@@ -0,0 +1,34 @@
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;
}