-
-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1458 from rajdeepchakraborty-rc/title
Added: Appropriate Page Titles
- Loading branch information
Showing
7 changed files
with
52 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}</>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}</>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}</>; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}</>; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}</>; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}</>; | ||
} |