-
Notifications
You must be signed in to change notification settings - Fork 3
/
next-seo-config.js
46 lines (44 loc) · 917 Bytes
/
next-seo-config.js
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
43
44
45
46
const description = "Simple Public Chat Website with Auth and Anonymous Mode";
const imgUrl =
"https://raw.githubusercontent.com/hyamero/chatti/main/public/assets/thumbnail.png";
export default {
title: "Chatti | Public Chat",
description,
openGraph: {
type: "website",
url: "https://daleban.tech",
title: "Chatti | Public Chat",
description,
images: [
{
url: imgUrl,
width: 800,
height: 600,
alt: "Chatti",
type: "image/png",
},
{
url: imgUrl,
width: 900,
height: 800,
alt: "Chatti",
type: "image/png",
},
{
url: imgUrl,
},
],
site_name: "Public Chat",
locale: "en_US",
},
twitter: {
cardType: "summary_large_image",
},
additionalLinkTags: [
{
rel: "icon",
href: "/favicon.ico",
type: "image/x-icon",
},
],
};