-
Notifications
You must be signed in to change notification settings - Fork 4
/
next-seo.config.js
30 lines (29 loc) · 1.05 KB
/
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
const host = process.env.NEXT_PUBLIC_HOST;
const seo = {
title:
"BlaBla Conf | 5 Days and 5 Tracks Covering Hottest Technology Trends in Darija",
description:
"By the Moroccan developer community, for the Moroccan developer community, BlaBla Conf is your one stop shop for latest and hottest technology trends, in Darija, and completely free! Join us from 25th to 29th October",
canonical: `${host}/`,
openGraph: {
title:
"BlaBla Conf | 5 Days and 5 Tracks covering hottest Technology Trends in Darija",
description:
"By the Moroccan developer community, for the Moroccan developer community, BlaBla Conf is your one stop shop for latest and hottest technology trends, in Darija, and completely free! Join us from 25th to 29th October",
type: "website",
locale: "en_IE",
url: `${host}/`,
site_name: "BlaBlaConf",
images: [
{
url: `${host}/cover.png`,
},
],
},
twitter: {
handle: "@geeksblabla",
site: "@geeksblabla",
cardType: "summary_large_image",
},
};
export default seo;