From f2a0ac5a9f29d3270864bcc4a896b77406db843c Mon Sep 17 00:00:00 2001 From: Rajdeep Chakraborty Date: Sun, 10 Nov 2024 00:42:20 +0530 Subject: [PATCH 1/5] Added: Base Title on all pages --- website3.0/src/app/layout.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website3.0/src/app/layout.js b/website3.0/src/app/layout.js index a281334f..d9c5f90d 100644 --- a/website3.0/src/app/layout.js +++ b/website3.0/src/app/layout.js @@ -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", From 3047acb5b58ebe776dc8917d93d9da04ed465390 Mon Sep 17 00:00:00 2001 From: Rajdeep Chakraborty Date: Sun, 10 Nov 2024 00:43:26 +0530 Subject: [PATCH 2/5] Added: Page titles for About, Team, Contact Page --- website3.0/src/app/about/layout.js | 8 ++++++++ website3.0/src/app/contact/layout.js | 9 +++++++++ website3.0/src/app/team/layout.js | 8 ++++++++ 3 files changed, 25 insertions(+) create mode 100644 website3.0/src/app/about/layout.js create mode 100644 website3.0/src/app/contact/layout.js create mode 100644 website3.0/src/app/team/layout.js diff --git a/website3.0/src/app/about/layout.js b/website3.0/src/app/about/layout.js new file mode 100644 index 00000000..89457c65 --- /dev/null +++ b/website3.0/src/app/about/layout.js @@ -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}; + } \ No newline at end of file diff --git a/website3.0/src/app/contact/layout.js b/website3.0/src/app/contact/layout.js new file mode 100644 index 00000000..7d7e3c1f --- /dev/null +++ b/website3.0/src/app/contact/layout.js @@ -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}; + } + \ No newline at end of file diff --git a/website3.0/src/app/team/layout.js b/website3.0/src/app/team/layout.js new file mode 100644 index 00000000..ed40b31f --- /dev/null +++ b/website3.0/src/app/team/layout.js @@ -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}; + } \ No newline at end of file From 029857d5d6ef9d5a0ce49799cff9ed0280999075 Mon Sep 17 00:00:00 2001 From: Rajdeep Chakraborty Date: Sun, 10 Nov 2024 00:43:58 +0530 Subject: [PATCH 3/5] Added: Page titles for Blog Page --- website3.0/src/app/blogs/layout.js | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 website3.0/src/app/blogs/layout.js diff --git a/website3.0/src/app/blogs/layout.js b/website3.0/src/app/blogs/layout.js new file mode 100644 index 00000000..8d9cf733 --- /dev/null +++ b/website3.0/src/app/blogs/layout.js @@ -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}; + } \ No newline at end of file From 239658923214148bf9f53fcbd3f6ea0172bc6d30 Mon Sep 17 00:00:00 2001 From: Rajdeep Chakraborty Date: Sun, 10 Nov 2024 00:44:13 +0530 Subject: [PATCH 4/5] Added: Page titles for DevOps Forum Page --- website3.0/src/app/devopsforum/layout.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 website3.0/src/app/devopsforum/layout.js diff --git a/website3.0/src/app/devopsforum/layout.js b/website3.0/src/app/devopsforum/layout.js new file mode 100644 index 00000000..4820db27 --- /dev/null +++ b/website3.0/src/app/devopsforum/layout.js @@ -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}; + } + \ No newline at end of file From e343578edd96e2f0cc4689ce1452e468435bc7af Mon Sep 17 00:00:00 2001 From: Rajdeep Chakraborty Date: Sun, 10 Nov 2024 00:44:30 +0530 Subject: [PATCH 5/5] Added: Page titles for Resources Page --- website3.0/src/app/resources/layout.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 website3.0/src/app/resources/layout.js diff --git a/website3.0/src/app/resources/layout.js b/website3.0/src/app/resources/layout.js new file mode 100644 index 00000000..e6f6e5cd --- /dev/null +++ b/website3.0/src/app/resources/layout.js @@ -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}; + } + \ No newline at end of file