diff --git a/app.vue b/app.vue
index e958adc..0a73f01 100644
--- a/app.vue
+++ b/app.vue
@@ -7,8 +7,10 @@
diff --git a/pages/enterprise.vue b/pages/enterprise.vue
index b0fcc91..5bea59c 100644
--- a/pages/enterprise.vue
+++ b/pages/enterprise.vue
@@ -263,7 +263,7 @@
- Reach out to discuss your needs and how we can help your buisness to make effective use of Manjaro Linux and other open-source software.
+ Reach out to discuss your needs and how we can help your business to make effective use of Manjaro Linux and other open-source software.
useHead({
- title: 'Enterprise Services' + ' – manjaro.org',
+ title: 'Enterprise Services',
+})
+useServerSeoMeta({
+ ogTitle: 'Manjaro Enterprise Services',
+ description: 'The Manjaro company supports businesses with the setup and management of their Manjaro Linux systems.',
})
diff --git a/pages/help.vue b/pages/help.vue
index a947f0d..f75e68c 100644
--- a/pages/help.vue
+++ b/pages/help.vue
@@ -146,6 +146,10 @@
diff --git a/pages/imprint.vue b/pages/imprint.vue
index f1e6113..3c0cf79 100644
--- a/pages/imprint.vue
+++ b/pages/imprint.vue
@@ -8,7 +8,7 @@
diff --git a/pages/mailing-lists.vue b/pages/mailing-lists.vue
index e8b2b30..19dd683 100644
--- a/pages/mailing-lists.vue
+++ b/pages/mailing-lists.vue
@@ -65,6 +65,6 @@
diff --git a/pages/news/[year]/[title].vue b/pages/news/[year]/[title].vue
index f63b478..5c3bdc3 100644
--- a/pages/news/[year]/[title].vue
+++ b/pages/news/[year]/[title].vue
@@ -129,11 +129,19 @@ if (!data.value) {
throw createError({ statusCode: 404, statusMessage: 'Page Not Found', fatal: true })
}
-const imgPath = route.path + '/' + data.value.image
+const imgPath = route.path.replace(/\/$/, '') + '/' + data.value.image
const author = getAuthors(data.value.authors)[0]
const authorPicture = getAuthorPicture(data.value.authors[0])
useHead({
title: data.value.title + ' | Manjaro News',
+ titleTemplate: '',
+})
+useServerSeoMeta({
+ ogTitle: data.value.title,
+ description: data.value.description,
+ ogImage: 'https://manjaro.org' + imgPath,
+ twitterCard: 'summary_large_image',
+ twitterImage: 'https://manjaro.org' + imgPath,
})
diff --git a/pages/news/index.vue b/pages/news/index.vue
index 2975db8..83ef0dc 100644
--- a/pages/news/index.vue
+++ b/pages/news/index.vue
@@ -44,7 +44,11 @@
import { useTimeAgo } from '@vueuse/core'
useHead({
- title: 'News' + ' – manjaro.org',
+ title: 'News',
+})
+useServerSeoMeta({
+ ogTitle: 'Manjaro News',
+ description: 'Articles about development and organization of the Manjaro project.',
})
const getImagePath = (path: string, file: string) => {
diff --git a/pages/partners.vue b/pages/partners.vue
index 2fede6b..8513aa3 100644
--- a/pages/partners.vue
+++ b/pages/partners.vue
@@ -105,6 +105,10 @@
diff --git a/pages/privacy-policy.vue b/pages/privacy-policy.vue
index 5801d83..f8ef18a 100644
--- a/pages/privacy-policy.vue
+++ b/pages/privacy-policy.vue
@@ -8,7 +8,7 @@