yunlonggong's picture
Initial project upload
1b44660
raw
history blame contribute delete
470 Bytes
export function useSEO(opts: { title: string; description: string; ogImage: string; ogUrl: string }) {
return useSeoMeta({
title: opts.title,
description: opts.description,
ogTitle: opts.title,
ogDescription: opts.description,
twitterTitle: opts.title,
twitterDescription: opts.description,
ogImage: opts.ogImage,
twitterImage: opts.ogImage,
twitterCard: 'summary_large_image',
ogLocale: 'en_US',
ogUrl: opts.ogUrl,
});
}