2024-01-04 18:38:50 +01:00
|
|
|
export const useOpnSeoMeta = (meta) => {
|
|
|
|
|
return useSeoMeta({
|
2024-04-15 19:39:03 +02:00
|
|
|
...(meta.title
|
|
|
|
|
? {
|
|
|
|
|
ogTitle: meta.title,
|
|
|
|
|
twitterTitle: meta.title,
|
|
|
|
|
}
|
|
|
|
|
: {}),
|
|
|
|
|
...(meta.description
|
|
|
|
|
? {
|
|
|
|
|
ogDescription: meta.description,
|
|
|
|
|
twitterDescription: meta.description,
|
|
|
|
|
}
|
|
|
|
|
: {}),
|
|
|
|
|
...(meta.ogImage
|
|
|
|
|
? {
|
|
|
|
|
twitterImage: meta.ogImage,
|
|
|
|
|
}
|
|
|
|
|
: {}),
|
2024-01-04 18:38:50 +01:00
|
|
|
...meta,
|
|
|
|
|
})
|
|
|
|
|
}
|