-
Notifications
You must be signed in to change notification settings - Fork 2
/
next-seo.config.js
37 lines (37 loc) · 1.15 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
31
32
33
34
35
36
37
export default {
defaultTitle: "DM Dinner Club Member Directory | Powered by Orbit",
description:
"Discover who's attending the DM Dinner Club. Connect, network, and engage with attendees, and explore their social profiles all in one place.",
canonical: "https://www.members.dmdinner.club/",
twitter: {
cardType: "summary",
handle: "@RoiStartup",
},
openGraph: {
type: "website",
url: "https://www.members.dmdinner.club/",
title: "DM Dinner Club Member Directory | Powered by Orbit",
description:
"Discover who's attending the DM Dinner Club. Connect, network, and engage with attendees, and explore their social profiles all in one place.",
images: [
{
url: `https://member-directory-eight.vercel.app/brand-logo-background.png`,
width: 200,
height: 200,
alt: "DM Dinner Club - Established 2022",
},
],
},
additionalLinkTags: [
{
rel: "icon",
href: `https://member-directory-eight.vercel.app/brand-logo-background.png`,
},
],
additionalMetaTags: [
{
name: "viewport",
content: "width=device-width, initial-scale=1",
},
],
};