File size: 470 Bytes
1b44660
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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,
  });
}