Skip to content
Merged
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
10 changes: 10 additions & 0 deletions project/src/app/docs/all-roadmaps/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import type { Metadata } from "next";

export const metadata: Metadata = {
title: "All Roadmaps",
description: "Browse all available DemonTech roadmaps. Discover paths for frontend, backend, devops, data science, and more.",
};

export default function Layout({ children }: { children: React.ReactNode }) {
return <>{children}</>;
}
10 changes: 10 additions & 0 deletions project/src/app/docs/common-questions/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import type { Metadata } from "next";

export const metadata: Metadata = {
title: "Common Questions",
description: "Find answers to frequently asked questions about DemonTech roadmaps, learning paths, and best practices.",
};

export default function Layout({ children }: { children: React.ReactNode }) {
return <>{children}</>;
}
10 changes: 10 additions & 0 deletions project/src/app/docs/learning-paths/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import type { Metadata } from "next";

export const metadata: Metadata = {
title: "Learning Paths",
description: "Explore structured learning paths to guide your journey from beginner to professional developer.",
};

export default function Layout({ children }: { children: React.ReactNode }) {
return <>{children}</>;
}
10 changes: 10 additions & 0 deletions project/src/app/docs/quick-start/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import type { Metadata } from "next";

export const metadata: Metadata = {
title: "Quick Start",
description: "Get up and running with DemonTech Roadmap in just a few minutes. Follow simple steps to start your learning journey.",
};

export default function Layout({ children }: { children: React.ReactNode }) {
return <>{children}</>;
}
Loading