-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmeta.js
29 lines (28 loc) · 1012 Bytes
/
meta.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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;