Skip to content

Commit

Permalink
Merge pull request #1458 from rajdeepchakraborty-rc/title
Browse files Browse the repository at this point in the history
Added: Appropriate Page Titles
  • Loading branch information
mdazfar2 authored Nov 10, 2024
2 parents 2ae3a83 + e343578 commit 87a4453
Show file tree
Hide file tree
Showing 7 changed files with 52 additions and 1 deletion.
8 changes: 8 additions & 0 deletions website3.0/src/app/about/layout.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export const metadata = {
title: "Helpops-Hub • About",
description: "Learn more about Helpops-Hub and the amazing work we do.",
};

export default function About({ children }) {
return <>{children}</>;
}
8 changes: 8 additions & 0 deletions website3.0/src/app/blogs/layout.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export const metadata = {
title: "Helpops-Hub • Blogs",
description: "Explore insightful blogs and articles on Helpops-Hub.",
};

export default function blogPage({ children }) {
return <>{children}</>;
}
9 changes: 9 additions & 0 deletions website3.0/src/app/contact/layout.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
export const metadata = {
title: "Helpops-Hub • Contact",
description: "Get in touch with the Helpops-Hub team for inquiries or support.",
};

export default function Contact({ children }) {
return <>{children}</>;
}

9 changes: 9 additions & 0 deletions website3.0/src/app/devopsforum/layout.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
export const metadata = {
title: "Helpops-Hub • Forum",
description: "Join discussions and engage with the community on Helpops-Hub's Forum.",
};

export default function DevopsForum({ children }) {
return <>{children}</>;
}

2 changes: 1 addition & 1 deletion website3.0/src/app/layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import React from "react";
const inter = Inter({ subsets: ["latin"] });

export const metadata = {
title: "Helpops-Hub",
title: "Helpops-Hub • Home",
description: "Ensuring You Never Get Stuck In DevOps Again!",
icons: {
icon: "HelpOps-H Fevicon.webp",
Expand Down
9 changes: 9 additions & 0 deletions website3.0/src/app/resources/layout.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
export const metadata = {
title: "Helpops-Hub • Resources",
description: "Access valuable resources and guides on Helpops-Hub to enhance your knowledge.",
};

export default function Resource({ children }) {
return <>{children}</>;
}

8 changes: 8 additions & 0 deletions website3.0/src/app/team/layout.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export const metadata = {
title: "Helpops-Hub • Team",
description: "Meet the talented team behind Helpops-Hub and their contributions.",
};

export default function Team({ children }) {
return <>{children}</>;
}

0 comments on commit 87a4453

Please sign in to comment.