-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathnext-seo.config.ts
42 lines (39 loc) · 1.21 KB
/
next-seo.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import { DefaultSeoProps } from 'next-seo';
const config: DefaultSeoProps = {
title: 'FabChat | Your place to hangout',
description: "This is fabchat, place where you can connect to the world seamlessly!!",
additionalMetaTags: [
{
name: 'keywords',
content: 'fabchat, chatting, FabChat, NextJs, realtime, direct messages, channels, server'
},
],
additionalLinkTags: [
{
rel: "icon",
href: "/favicon.ico",
},
],
openGraph: {
type: 'website',
locale: 'en_US',
url: "https://fabchat.vercel.app/",
siteName: 'FabChat',
title: "FabChat | Your place to hangout",
description: "This is fabchat, place where you can connect to the world seamlessly!!Your place to hangout",
images: [
{
url: 'https://res.cloudinary.com/dq9habeq2/image/upload/v1675108135/favicon_oiu0b4.ico',
width: 850,
height: 650,
alt: 'FabChat Icon',
},
],
},
// twitter: {
// handle: '@handle',
// site: '@site',
// cardType: 'summary_large_image',
// },
};
export default config;