enhance ssr, add routes and enhance the header styles
This commit is contained in:
34
src/app/projects/layout.tsx
Normal file
34
src/app/projects/layout.tsx
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user