This commit is contained in:
Mrrp 2025-01-04 02:47:38 -08:00
parent 2c66a9b678
commit 9aa81ef675
28 changed files with 1735 additions and 242 deletions

View file

@ -59,7 +59,6 @@ useSeoMeta({
twitterTitle: fullTitle,
twitterDescription: description,
twitterImage: background
});
useHead({
@ -87,6 +86,15 @@ useHead({
]
})
definePageMeta({
title: fullTitle,
description: description,
"og:title": fullTitle,
"og:description": description,
"og:image": background,
"og:url": siteConfig.siteUrl,
});
watch(() => props.title, (newVal) => {
title.value = newVal;
fullTitle.value = title.value + ' | ' + siteConfig.siteTitle;