-
Notifications
You must be signed in to change notification settings - Fork 11
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 #209 from Web-Dev-Path/feature/implement-dynamic-m…
…eta-tags Imeplementation of Dynamic Meta Tags
- Loading branch information
Showing
4 changed files
with
35 additions
and
9 deletions.
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
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
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 |
---|---|---|
@@ -1,6 +1,29 @@ | ||
export const meta = { | ||
title: 'Web Dev Path', | ||
keywords: 'web development, mentoring, volunteering, Next.js', | ||
description: | ||
'The Web Dev Path is a team of professional developers project that aims to provide a comprehensive path for people who seek to begin their web development journey.', | ||
const pageMeta = { | ||
'/': { | ||
title: 'Home - Web Dev Path', | ||
description: 'Start your journey in web development with Web Dev Path.', | ||
keywords: 'web development, learning, coding', | ||
canonical: 'https://www.webdevpath.co', | ||
}, | ||
'/about': { | ||
title: 'About Us - Web Dev Path', | ||
description: 'Learn about the Web Dev Path team and our mission.', | ||
keywords: 'about web dev path, web development team, web dev mentoring', | ||
canonical: 'https://www.webdevpath.co/about', | ||
}, | ||
'/blog': { | ||
title: 'Blog - Web Dev Path', | ||
description: 'Check out the blog posts by Web Dev Path members', | ||
keywords: 'web development blog, programming articles, success stories', | ||
canonical: 'https://www.webdevpath.co/blog', | ||
}, | ||
'/contact': { | ||
title: 'Contact - Web Dev Path', | ||
description: | ||
"Send us your questions, and we'll get back to you as soon as possible", | ||
keywords: 'contact, questions', | ||
canonical: 'https://www.webdevpath.co/contact', | ||
}, | ||
}; | ||
|
||
export default pageMeta; |