diff --git a/composables/usePageMeta.ts b/composables/usePageMeta.ts
index 97c6738..446b908 100644
--- a/composables/usePageMeta.ts
+++ b/composables/usePageMeta.ts
@@ -24,7 +24,7 @@ export function usePageMeta () {
// Canonical URL
const config = useRuntimeConfig()
- const canonical = `${config.public.appUrl}${route.path}`
+ const canonical = `${config.public.appUrl}${page.pageLink}`
// Robots Meta Tag
const robotsContent = route.path === '/danke' ? 'noindex, nofollow' : 'index, follow'
@@ -83,6 +83,7 @@ export function usePageMeta () {
{ property: 'og:title', content: metaTitle },
{ property: 'og:description', content: metaDescription },
{ property: 'og:image', content: metaImage },
+ { property: 'og:type', content: 'website' },
{ name: 'twitter:title', content: metaTitle },
{ name: 'twitter:description', content: metaDescription },
{ name: 'twitter:image', content: metaImage }
diff --git a/pages/[...all].vue b/pages/[...all].vue
index cd2c3d5..f47e24a 100644
--- a/pages/[...all].vue
+++ b/pages/[...all].vue
@@ -17,7 +17,13 @@